From 64fdb9315d8ffbc608fbbb8492d20418b6f42b7b Mon Sep 17 00:00:00 2001 From: Aldo Adirajasa Fathoni Date: Tue, 26 Sep 2023 21:56:27 +0700 Subject: [PATCH] Fix socketio default host The previous value caused webvirtcloud to try to connect to socketiod with 0.0.0.0. --- webvirtcloud/settings.py.template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webvirtcloud/settings.py.template b/webvirtcloud/settings.py.template index fabe94c..88146c1 100644 --- a/webvirtcloud/settings.py.template +++ b/webvirtcloud/settings.py.template @@ -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