Skip to content

Commit

Permalink
fixed proxy path prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
feshchenkod committed Mar 13, 2022
1 parent 1bc3177 commit 1adc41e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions bor/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,8 @@ services:
- --ws
- --ws.port
- ${BOR_WS_PORT}
- --ws.rpcprefix
- "/"
- --ws.addr
- 0.0.0.0
- --ws.origins=*
Expand Down Expand Up @@ -147,6 +149,8 @@ services:
- eth,net,web3,txpool,bor
- --http.port
- ${BOR_RPC_PORT}
- --http.rpcprefix
- "/"
- --networkid
- ${BOR_CHAIN_ID}
- --ethstats
Expand Down
4 changes: 4 additions & 0 deletions bsc/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ services:
- "0.0.0.0"
- --http.port
- "${HTTP_PORT}"
- --http.rpcprefix
- "/"
- --http.corsdomain=*
- --http.vhosts=*
- --http.api
Expand All @@ -43,6 +45,8 @@ services:
- "0.0.0.0"
- --ws.port
- "${WS_PORT}"
- --ws.rpcprefix
- "/"
- --ws.origins=*
- --ws.api
- "eth,net,web3,txpool"
Expand Down
4 changes: 4 additions & 0 deletions geth/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ services:
- "0.0.0.0"
- --http.port
- "${HTTP_PORT}"
- --http.rpcprefix
- "/"
- --http.corsdomain=*
- --http.vhosts=*
- --http.api
Expand All @@ -37,6 +39,8 @@ services:
- "0.0.0.0"
- --ws.port
- "${WS_PORT}"
- --ws.rpcprefix
- "/"
- --ws.origins=*
- --ws.api
- "eth,net,web3,txpool"
Expand Down

0 comments on commit 1adc41e

Please sign in to comment.