daemon off; error_log /home/sy/code/logs/error.log; pid /home/sy/code/logs/nginx.pid; events {} http { include /etc/nginx/mime.types; proxy_temp_path /home/sy/code/logs; client_body_temp_path /home/sy/code/nginx/files; default_type application/octet-stream; server { access_log /home/sy/code/logs/quietreading-access.log; location / { root /home/sy/code/site/quietreading; } location /hosts { default_type "text/html"; alias /home/sy/code/site/quietreading/hosts.html; } error_page 404 /404.html; location = /404.html { root /home/sy/code/site/quietreading; } listen 9080; } }