diff options
-rw-r--r-- | local.conf | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/local.conf b/local.conf new file mode 100644 index 0000000..cf7d5b4 --- /dev/null +++ b/local.conf @@ -0,0 +1,38 @@ +daemon off; +error_log /home/sy/code/logs/error.log; +pid /home/sy/code/logs/nginx.pid; + +events {} +http { + include /etc/nginx/mime.types; + default_type application/octet-streamP; + server { + access_log /home/sy/code/logs/access.log; + + location /prosodyle { + alias /home/sy/code/prosodyle/; + } + + location /well-ordered { + alias /home/sy/code/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/cyfraeviolae; + } + + listen 9090; + } +} |