32 lines
590 B
Nginx Configuration File
Raw Normal View History

2017-04-25 21:49:24 +02:00
worker_processes auto;
pid /nginx/run/nginx.pid;
daemon off;
events {
worker_connections 2048;
use epoll;
}
http {
include /nginx/conf/mime.types;
default_type application/octet-stream;
access_log /nginx/logs/access.log combined;
error_log /nginx/logs/error.log error;
client_max_body_size <UPLOAD_MAX_SIZE>;
aio threads;
sendfile on;
keepalive_timeout 15;
keepalive_disable msie6;
keepalive_requests 100;
tcp_nopush on;
tcp_nodelay on;
server_tokens off;
2017-04-26 01:16:03 +02:00
gzip off;
2017-04-25 21:49:24 +02:00
include /nginx/sites-enabled/*.conf;
}