disable websocket port by default

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2023-03-20 21:53:49 +01:00
parent 8f7b6ffd88
commit d20b97fb24
No known key found for this signature in database
GPG Key ID: FE65CD384D5BF7B4
1 changed files with 2 additions and 2 deletions

View File

@ -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 }}'