nginx.conf-old
1 worker_processes 1;
2
3 events {
4 worker_connections 1024;
5 }
6
7 http {
8 include /etc/nginx/mime.types;
9 default_type application/octet-stream;
10
11 sendfile on;
12 keepalive_timeout 65;
13
14 include /etc/nginx/conf.d/*.conf;
15 }