16 lines
544 B
Nginx Configuration File
16 lines
544 B
Nginx Configuration File
server {
|
|
listen 8099;
|
|
|
|
location / {
|
|
# Reconstruct the full path expected by the app's BASE_URL
|
|
proxy_pass http://127.0.0.1:3001$http_x_ingress_path$request_uri;
|
|
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "upgrade";
|
|
proxy_set_header Host $http_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;
|
|
}
|
|
} |