mirror of
https://github.com/yuukiwww/taiko-web.git
synced 2024-10-22 17:05:49 +02:00
Add conf files to tools
This commit is contained in:
parent
6918648ed6
commit
8865ba2e89
25
tools/nginx.conf
Normal file
25
tools/nginx.conf
Normal 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;
|
||||
}
|
||||
}
|
15
tools/supervisor.conf
Normal file
15
tools/supervisor.conf
Normal file
@ -0,0 +1,15 @@
|
||||
[program:taiko_app]
|
||||
directory=/srv/taiko-web
|
||||
command=/srv/taiko-web/.venv/bin/gunicorn -b 127.0.0.1:34801 app:app
|
||||
autostart=true
|
||||
autorestart=true
|
||||
stdout_logfile=/var/log/taiko-web/app.out.log
|
||||
stderr_logfile=/var/log/taiko-web/app.err.log
|
||||
|
||||
[program:taiko_server]
|
||||
directory=/srv/taiko-web
|
||||
command=/srv/taiko-web/.venv/bin/python server.py 34802
|
||||
autostart=true
|
||||
autorestart=true
|
||||
stdout_logfile=/var/log/taiko-web/server.out.log
|
||||
stderr_logfile=/var/log/taiko-web/server.err.log
|
Loading…
Reference in New Issue
Block a user