added music servoce http
This commit is contained in:
15
sites-available/koel
Normal file
15
sites-available/koel
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
# HTTP-only NGINX config for music.aaf.systems (no SSL)
|
||||||
|
server {
|
||||||
|
listen 80;
|
||||||
|
server_name music.aaf.systems;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
proxy_pass http://100.93.165.98:4075;
|
||||||
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header Upgrade $http_upgrade;
|
||||||
|
proxy_set_header Connection "upgrade";
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user