Add conf files to tools

This commit is contained in:
LoveEevee
2020-12-22 21:51:39 +03:00
parent 6918648ed6
commit 8865ba2e89
2 changed files with 40 additions and 0 deletions

25
tools/nginx.conf Normal file
View File

@@ -0,0 +1,25 @@
server {
listen 80;
#server_name taiko.example.com;
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $server_name;
proxy_pass http://127.0.0.1:34801;
}
location ~ ^/(assets|songs|src)/ {
root /srv/taiko-web/public;
location ~ ^/songs/(\d+)/preview\.mp3$ {
try_files $uri /api/preview?id=$1;
}
}
location /p2 {
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_pass http://127.0.0.1:34802;
}
}