disable websocket port by default
Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
8f7b6ffd88
commit
d20b97fb24
|
@ -45,9 +45,9 @@ geth_rpc_vhosts:
|
|||
# Wrapper for easier RPC usage
|
||||
geth_rpc_wrapper: '{{ geth_service_path }}/rpc.sh'
|
||||
# Web Sockets API
|
||||
geth_websocket_enabled: true
|
||||
geth_websocket_enabled: false
|
||||
geth_websocket_addr: '127.0.0.1'
|
||||
geth_websocket_port: '{{ geth_rpc_port + 1 | int }}'
|
||||
geth_websocket_port: '{{ geth_rpc_port|int + 1 | int }}'
|
||||
geth_websocket_api: 'eth,net,web3,personal,admin,engine'
|
||||
geth_websocket_origins: '{{ geth_rpc_vhosts }}'
|
||||
|
||||
|
|
Loading…
Reference in New Issue