user nginx; worker_processes 1; error_log /var/log/nginx/error.log; pid /var/run/nginx.pid; events { worker_connections 16384; } http { include /etc/nginx/mime.types; default_type application/octet-stream; access_log off; sendfile off; keepalive_timeout 65; keepalive_requests 100000; server { listen 82; server_name _; location / { root /source/db/static/tests; index index.html; } error_page 404 /404.html; location = /404.html { root /var/www/html; } error_page 500 502 503 504 /50x.html; location = /50x.html { root /var/www/html; } } }