
* Enable WebSocket server by default in Docker image The rpc server is enabled by default and port mappings are provided for both the rpc server and the websocket server. Keeping the configuration and documentation consistent between the two will be clearer. * Consistently document default config
15 lines
219 B
TOML
15 lines
219 B
TOML
|
|
[node.websocket]
|
|
|
|
# WebSocket server bind address.
|
|
# type:string,ip
|
|
address = "::ffff:0.0.0.0"
|
|
# Enable or disable WebSocket server.
|
|
# type:bool
|
|
enable = true
|
|
|
|
[rpc]
|
|
|
|
# Enable or disable RPC.
|
|
# type:bool
|
|
enable = true
|