1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2024-11-01 03:54:15 +00:00

Merge pull request #352 from shokinn/fix_novncd_port

Fix Port configuration for novncd
This commit is contained in:
Anatoliy Guskov 2020-08-18 19:00:47 +03:00 committed by GitHub
commit a13247080e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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