From 941a97201e4a63b48a6293bd0fa927726315a63b Mon Sep 17 00:00:00 2001 From: catborise Date: Mon, 25 Nov 2019 11:00:25 +0300 Subject: [PATCH] settings.py: add ws_public_port comment and set default value 6080 --- webvirtcloud/settings.py.template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webvirtcloud/settings.py.template b/webvirtcloud/settings.py.template index 88078be..58469f0 100644 --- a/webvirtcloud/settings.py.template +++ b/webvirtcloud/settings.py.template @@ -103,8 +103,8 @@ WS_PORT = 6080 # Websock host WS_HOST = '0.0.0.0' -# Websock public port -WS_PUBLIC_PORT = '443' +# Websock public port - 80 or 443 if reverse-proxy, else 6080 +WS_PUBLIC_PORT = 6080 # Websock public host WS_PUBLIC_HOST = None