diff --git a/webvirtcloud/settings.py.template b/webvirtcloud/settings.py.template
index 8f20dd8..7c78005 100644
--- a/webvirtcloud/settings.py.template
+++ b/webvirtcloud/settings.py.template
@@ -106,6 +106,13 @@ WS_HOST = '0.0.0.0'
 # Websock public port
 WS_PUBLIC_HOST = None
 
+# Websock public port - default is 80 - uncomment 443 and comment 80 if you want to use vnc over https
+WS_PUBLIC_PORT = 80
+#WS_PUBLIC_PORT = 443
+
+# Websock pubic path
+WS_PUBLIC_PATH = '/novncd/'
+
 # Websock SSL connection
 WS_CERT = None
 
@@ -153,4 +160,4 @@ INSTANCE_VOLUME_DEFAULT_FORMAT = 'qcow2'
 INSTANCE_VOLUME_DEFAULT_BUS = 'virtio'
 INSTANCE_VOLUME_DEFAULT_CACHE = 'directsync'
 # up to os, 0=root, 107=qemu or libvirt-bin(for ubuntu)
-INSTANCE_VOLUME_DEFAULT_OWNER = 0
\ No newline at end of file
+INSTANCE_VOLUME_DEFAULT_OWNER = 0