1
0
Fork 0
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:
Aldo Adirajasa Fathoni 2023-09-26 21:56:27 +07:00
parent 84e22e4a8c
commit 64fdb9315d
No known key found for this signature in database
GPG key ID: 18BBC620752C83B0

View file

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