From 5850d14722637849142d2c76bcf8b0af222b5195 Mon Sep 17 00:00:00 2001 From: Philip Henning Date: Thu, 13 Aug 2020 17:55:40 +0200 Subject: [PATCH] Fix Port configuration for novncd Reverte accidentally change variable for novncd port configuration. Change variable `WS_PUBLIC_PORT` back to `WS_PORT` --- console/novncd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/console/novncd b/console/novncd index 6aa26c6..34c962e 100755 --- a/console/novncd +++ b/console/novncd @@ -18,7 +18,7 @@ django.setup() import re import socket from six.moves import http_cookies as Cookie -from webvirtcloud.settings import WS_PUBLIC_PORT, WS_HOST, WS_CERT +from webvirtcloud.settings import WS_PORT, WS_HOST, WS_CERT from vrtManager.connection import CONN_SSH, CONN_SOCKET from console.sshtunnels import SSHTunnels from optparse import OptionParser @@ -51,7 +51,7 @@ parser.add_option("-p", dest="port", action="store", help="Listen port", - default=WS_PUBLIC_PORT or 6080) + default=WS_PORT or 6080) parser.add_option("-c", "--cert",