]> code.delx.au - monosys/blob - etc/nginx/nginx.conf
nginx
[monosys] / etc / nginx / nginx.conf
1 user http;
2 worker_processes 1;
3
4 events {
5 worker_connections 1024;
6 }
7
8 http {
9 include mime.types;
10 default_type application/octet-stream;
11
12 sendfile on;
13 tcp_nopush on;
14 tcp_nodelay on;
15 keepalive_timeout 65;
16
17 access_log syslog:server=unix:/dev/log,tag=nginx,nohostname,severity=info combined;
18 error_log syslog:server=unix:/dev/log,tag=nginx,nohostname,severity=error;
19
20 include sites-enabled/*;
21 }