From 7a34636c75f1b428663a1ac0496bb1def14a176a Mon Sep 17 00:00:00 2001 From: cyfraeviolae Date: Sat, 26 Feb 2022 15:56:13 -0500 Subject: local conf --- local.conf | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 local.conf 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; + } +} -- cgit v1.2.3