Skip to content

Commit

Permalink
Fix failure to specify port for TurboVNC
Browse files Browse the repository at this point in the history
  • Loading branch information
consideRatio committed Mar 8, 2024
1 parent 3df5407 commit 024414e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jupyter_remote_desktop_proxy/setup_websockify.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def setup_websockify():
vnc_args = [vncserver, '-rfbunixpath', sockets_path]
socket_args = ['--unix-target', sockets_path]
else:
vnc_args = [vncserver]
vnc_args = [vncserver, '-rfbport', '{port}']
socket_args = []

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

0 comments on commit 024414e

Please sign in to comment.