Files
ethereum-rpc-docker/nginx-proxy/default.conf.template
2024-11-06 13:32:01 +01:00

27 lines
717 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 localhost;
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};
}