Skip to content

Commit 024414e

Browse files
committed
Fix failure to specify port for TurboVNC
1 parent 3df5407 commit 024414e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jupyter_remote_desktop_proxy/setup_websockify.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def setup_websockify():
3737
vnc_args = [vncserver, '-rfbunixpath', sockets_path]
3838
socket_args = ['--unix-target', sockets_path]
3939
else:
40-
vnc_args = [vncserver]
40+
vnc_args = [vncserver, '-rfbport', '{port}']
4141
socket_args = []
4242

4343
if not os.path.exists(os.path.expanduser('~/.vnc/xstartup')):

0 commit comments

Comments
 (0)