X-Git-Url: https://code.delx.au/monosys/blobdiff_plain/733d4c37cb0e26aecc2e44e31e151734344213bc..b8519b22b2d573aec1a96cf4d38002376df617ec:/etc/nginx/nginx.conf diff --git a/etc/nginx/nginx.conf b/etc/nginx/nginx.conf new file mode 100644 index 0000000..cd5cf36 --- /dev/null +++ b/etc/nginx/nginx.conf @@ -0,0 +1,21 @@ +user http; +worker_processes 1; + +events { + worker_connections 1024; +} + +http { + include mime.types; + default_type application/octet-stream; + + sendfile on; + tcp_nopush on; + tcp_nodelay on; + keepalive_timeout 65; + + access_log syslog:server=unix:/dev/log,tag=nginx,nohostname,severity=info combined; + error_log syslog:server=unix:/dev/log,tag=nginx,nohostname,severity=error; + + include sites-enabled/*; +}