summaryrefslogtreecommitdiffstats
path: root/etc/nginx/nginx.conf
blob: 6b32c6f9e976474830395c34bb3153f2bda8bf2a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
worker_processes  4;

worker_rlimit_nofile 1024;
events {
    worker_connections  800;
}


http {
    include       mime.types;
    default_type  application/octet-stream;
    index         index.html index.htm;

    keepalive_timeout  65;
    server_tokens off;

    include /etc/nginx/sites.conf;
}