mirror of
https://github.com/retspen/webvirtcloud
synced 2024-10-31 19:44:16 +00:00
Fix socketio default host
The previous value caused webvirtcloud to try to connect to socketiod with 0.0.0.0.
This commit is contained in:
parent
84e22e4a8c
commit
64fdb9315d
1 changed files with 1 additions and 1 deletions
|
@ -201,7 +201,7 @@ WS_PUBLIC_PATH = "/novncd/"
|
|||
WS_CERT = None
|
||||
|
||||
SOCKETIO_PORT = 6081
|
||||
SOCKETIO_HOST = '0.0.0.0'
|
||||
SOCKETIO_HOST = "0.0.0.0"
|
||||
|
||||
# Socketio public host
|
||||
SOCKETIO_PUBLIC_HOST = None
|
||||
|
|
Loading…
Reference in a new issue