diff options
author | cyfraeviolae <cyfraeviolae> | 2022-02-26 15:56:13 -0500 |
---|---|---|
committer | cyfraeviolae <cyfraeviolae> | 2022-02-26 15:56:13 -0500 |
commit | 7a34636c75f1b428663a1ac0496bb1def14a176a (patch) | |
tree | 2eb9fe76f3a9cc66a190ae4a96b5aa015d2f60d8 | |
parent | 7098205547a8bc4c27d73a0dc76d791a34229c8e (diff) |
local conf
-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; + } +} |