39 lines
No EOL
963 B
Nginx Configuration File
39 lines
No EOL
963 B
Nginx Configuration File
# Generated by nginxconfig.io
|
|
# See nginxconfig.txt for the configuration share link
|
|
|
|
user www-data;
|
|
pid /run/nginx.pid;
|
|
worker_processes auto;
|
|
worker_rlimit_nofile 65535;
|
|
|
|
# Load modules
|
|
include /etc/nginx/modules-enabled/*.conf;
|
|
|
|
events {
|
|
multi_accept on;
|
|
worker_connections 65535;
|
|
}
|
|
|
|
http {
|
|
charset utf-8;
|
|
sendfile on;
|
|
tcp_nopush on;
|
|
tcp_nodelay on;
|
|
server_tokens off;
|
|
log_not_found off;
|
|
types_hash_max_size 2048;
|
|
types_hash_bucket_size 64;
|
|
client_max_body_size 16M;
|
|
|
|
# MIME
|
|
include mime.types;
|
|
default_type application/octet-stream;
|
|
|
|
# Logging
|
|
access_log off;
|
|
error_log /dev/null;
|
|
|
|
# Load configs
|
|
include /etc/nginx/conf.d/*.conf;
|
|
include /etc/nginx/sites-enabled/*;
|
|
} |