make nginx proxy reverb

This commit is contained in:
2026-03-28 17:18:33 +01:00
parent cbc868bae8
commit dc95bfc982
+8
View File
@@ -17,4 +17,12 @@ server {
fastcgi_param SERVER_NAME 127.0.0.1;
fastcgi_param HTTPS off;
}
location /app/ {
proxy_pass http://reverb:8080;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $host;
}
}