worker_processes 1; events { worker_connections 1024; } http { include mime.types; sendfile on; keepalive_timeout 65; server { listen 8080; server_name localhost; default_type 'text/html'; charset utf-8; location / { root /dashboard; } error_page 404 /404.html; error_page 500 502 503 504 /50x.html; } }