25 lines
499 B
Nginx Configuration File
25 lines
499 B
Nginx Configuration File
user nginx;
|
|
worker_processes auto;
|
|
pid /var/run/nginx.pid;
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
include /etc/nginx/mime.types;
|
|
default_type application/octet-stream;
|
|
|
|
# Define log formats first
|
|
include /etc/nginx/conf.d/matomo_log_format.conf;
|
|
|
|
# Basic settings
|
|
sendfile on;
|
|
tcp_nopush on;
|
|
tcp_nodelay on;
|
|
keepalive_timeout 65;
|
|
types_hash_max_size 2048;
|
|
|
|
# Include remaining server configurations
|
|
include /etc/nginx/conf.d/default.conf;
|
|
}
|