mirror of
https://github.com/meeb/tubesync.git
synced 2025-06-21 12:36:36 +00:00
Create token_server.conf
This commit is contained in:
parent
12aa6b4134
commit
4abd768ba8
15
config/root/etc/nginx/token_server.conf
Normal file
15
config/root/etc/nginx/token_server.conf
Normal file
@ -0,0 +1,15 @@
|
||||
upstream token_server {
|
||||
server 127.0.0.2:4416 down;
|
||||
}
|
||||
|
||||
server {
|
||||
|
||||
# Ports
|
||||
listen 4416;
|
||||
listen [::]:4416;
|
||||
|
||||
location / {
|
||||
proxy_pass http://token_server;
|
||||
proxy_redirect default;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user