1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2024-12-24 23:25:24 +00:00

Fix Port configuration for novncd

Reverte accidentally change variable for novncd port configuration.

Change variable `WS_PUBLIC_PORT` back to `WS_PORT`
This commit is contained in:
Philip Henning 2020-08-13 17:55:40 +02:00
parent 8e4073f4b7
commit 5850d14722

View file

@ -18,7 +18,7 @@ django.setup()
import re import re
import socket import socket
from six.moves import http_cookies as Cookie 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 vrtManager.connection import CONN_SSH, CONN_SOCKET
from console.sshtunnels import SSHTunnels from console.sshtunnels import SSHTunnels
from optparse import OptionParser from optparse import OptionParser
@ -51,7 +51,7 @@ parser.add_option("-p",
dest="port", dest="port",
action="store", action="store",
help="Listen port", help="Listen port",
default=WS_PUBLIC_PORT or 6080) default=WS_PORT or 6080)
parser.add_option("-c", parser.add_option("-c",
"--cert", "--cert",