38 lines
782 B
Nginx Configuration File
38 lines
782 B
Nginx Configuration File
user www-data;
|
|
worker_processes auto;
|
|
worker_rlimit_nofile 1024;
|
|
include /etc/nginx/modules-enabled/*.conf;
|
|
|
|
events {
|
|
worker_connections 512;
|
|
multi_accept off;
|
|
}
|
|
|
|
http {
|
|
sendfile on;
|
|
tcp_nopush on;
|
|
tcp_nodelay on;
|
|
|
|
gzip off;
|
|
server_tokens off;
|
|
keepalive_timeout 30;
|
|
|
|
access_log /var/log/nginx/access.log;
|
|
error_log /var/log/nginx/error.log;
|
|
|
|
include /etc/nginx/mime.types;
|
|
|
|
# Needed to support websocket connections
|
|
map $http_upgrade $connection_upgrade {
|
|
default upgrade;
|
|
'' "";
|
|
}
|
|
|
|
include /etc/nginx/conf.d/*.conf;
|
|
|
|
include /etc/nginx/snippets/proxy.conf;
|
|
include /etc/nginx/snippets/ssl.conf;
|
|
include /etc/nginx/snippets/ssl-headers.conf;
|
|
|
|
include /etc/nginx/sites-enabled/*;
|
|
}
|