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; default_type application/octet-stream; server { access_log /home/sy/code/logs/access.log; location /prosodyle { alias /home/sy/code/site/prosodyle/; } location /well-ordered { alias /home/sy/code/site/well-ordered/; } location /sumcheck { proxy_pass http://127.0.0.1:9000; } location /antiquitysort { proxy_pass http://127.0.0.1:8090; } location /spectral-renga { proxy_pass http://127.0.0.1:8080; } location / { root /home/sy/code/site/cyfraeviolae; } listen 9090; } }