fixed proxy path prefix

This commit is contained in:
_den 2022-03-13 14:00:46 +10:00
parent 1bc3177cfb
commit 1adc41eb0c
3 changed files with 12 additions and 0 deletions

View File

@ -114,6 +114,8 @@ services:
- --ws
- --ws.port
- ${BOR_WS_PORT}
- --ws.rpcprefix
- "/"
- --ws.addr
- 0.0.0.0
- --ws.origins=*
@ -147,6 +149,8 @@ services:
- eth,net,web3,txpool,bor
- --http.port
- ${BOR_RPC_PORT}
- --http.rpcprefix
- "/"
- --networkid
- ${BOR_CHAIN_ID}
- --ethstats

View File

@ -34,6 +34,8 @@ services:
- "0.0.0.0"
- --http.port
- "${HTTP_PORT}"
- --http.rpcprefix
- "/"
- --http.corsdomain=*
- --http.vhosts=*
- --http.api
@ -43,6 +45,8 @@ services:
- "0.0.0.0"
- --ws.port
- "${WS_PORT}"
- --ws.rpcprefix
- "/"
- --ws.origins=*
- --ws.api
- "eth,net,web3,txpool"

View File

@ -28,6 +28,8 @@ services:
- "0.0.0.0"
- --http.port
- "${HTTP_PORT}"
- --http.rpcprefix
- "/"
- --http.corsdomain=*
- --http.vhosts=*
- --http.api
@ -37,6 +39,8 @@ services:
- "0.0.0.0"
- --ws.port
- "${WS_PORT}"
- --ws.rpcprefix
- "/"
- --ws.origins=*
- --ws.api
- "eth,net,web3,txpool"