27 lines
713 B
Plaintext
27 lines
713 B
Plaintext
map $http_upgrade $proxy_connection {
|
|
default "rpc_backend${RPC_PATH}";
|
|
websocket "ws_backend${WS_PATH}";
|
|
}
|
|
|
|
server {
|
|
listen 80;
|
|
server_name _;
|
|
|
|
location / {
|
|
proxy_pass http://$proxy_connection;
|
|
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;
|
|
proxy_set_header Upgrade $http_upgrade; # Forward Upgrade header
|
|
proxy_set_header Connection $http_connection; # Forward Connection header
|
|
}
|
|
}
|
|
|
|
upstream rpc_backend {
|
|
server ${PROXY_HOST}:${RPC_PORT};
|
|
}
|
|
|
|
upstream ws_backend {
|
|
server ${PROXY_HOST}:${WS_PORT};
|
|
} |