Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions console/novncd
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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",
Expand Down