23 lines
No EOL
539 B
Nginx Configuration File
23 lines
No EOL
539 B
Nginx Configuration File
worker_processes 4;
|
|
pid /run/nginx.pid;
|
|
include /etc/nginx/modules/*.conf;
|
|
|
|
events {
|
|
worker_connections 768;
|
|
}
|
|
|
|
http {
|
|
access_log /log/access.log;
|
|
error_log /log/error.log;
|
|
sendfile on;
|
|
tcp_nopush on;
|
|
tcp_nodelay on;
|
|
keepalive_timeout 65;
|
|
types_hash_max_size 2048;
|
|
client_max_body_size 0;
|
|
include /etc/nginx/mime.types;
|
|
default_type application/octet-stream;
|
|
gzip on;
|
|
gzip_disable "msie6";
|
|
include /config/nginx/site-confs/*;
|
|
} |