2019-04-24 17:08:05 +02:00
|
|
|
daemon off;
|
|
|
|
user root;
|
2019-02-13 16:54:02 +01:00
|
|
|
pid /var/run/nginx.pid;
|
2019-04-24 17:08:05 +02:00
|
|
|
worker_processes 1;
|
|
|
|
error_log /proc/1/fd/1 error;
|
2019-02-13 16:54:02 +01:00
|
|
|
events {
|
2019-04-24 17:08:05 +02:00
|
|
|
worker_connections 1024;
|
2019-02-13 16:54:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
http {
|
2019-04-24 17:08:05 +02:00
|
|
|
include /etc/nginx/includes/mime.types;
|
2023-01-18 19:54:27 +01:00
|
|
|
|
|
|
|
access_log off;
|
|
|
|
default_type application/octet-stream;
|
|
|
|
gzip on;
|
|
|
|
keepalive_timeout 65;
|
|
|
|
sendfile on;
|
|
|
|
server_tokens off;
|
|
|
|
|
|
|
|
tcp_nodelay on;
|
|
|
|
tcp_nopush on;
|
2019-02-13 16:54:02 +01:00
|
|
|
|
|
|
|
map $http_upgrade $connection_upgrade {
|
|
|
|
default upgrade;
|
|
|
|
'' close;
|
|
|
|
}
|
|
|
|
|
2023-01-18 19:54:27 +01:00
|
|
|
include /etc/nginx/includes/upstream.conf;
|
2019-04-24 17:08:05 +02:00
|
|
|
include /etc/nginx/servers/*.conf;
|
2019-02-13 16:54:02 +01:00
|
|
|
}
|