Files
2023-12-29 11:44:01 -06:00

22 lines
783 B
Nginx Configuration File

events { worker_connections 1024; }
http {
server {
listen 8000;
location /console/subpath/ {
rewrite ^/console/subpath/(.*) /$1 break;
proxy_pass http://host.docker.internal:9090;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $host;
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;
# This allows WebSocket connections
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
}
}