dsql-admin/dsql-app/docker/reverse-proxy/conf.d/default.conf
Benjamin Toby e95f4d1087 Updates
2025-02-16 17:12:40 +01:00

20 lines
490 B
Plaintext

server {
listen 80;
server_name _;
client_max_body_size 200M;
location /dsql-websocket {
proxy_pass http://172.72.0.36:7073;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $host;
}
location / {
proxy_pass http://172.72.0.35:7070;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $host;
}
}