Skip to content

Commit c782eb9

Browse files
committed
Fixes the port for vnc (fixes jupyterhub#47)
1 parent 6e1c57c commit c782eb9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

jupyter_remote_desktop_proxy/__init__.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,11 @@ def setup_desktop():
5555
os.path.join(HERE, 'share/web/noVNC-1.2.0'),
5656
'--heartbeat',
5757
'30',
58-
'{port}',
58+
'5901',
5959
]
6060
+ socket_args
6161
+ ['--', '/bin/sh', '-c', f'cd {os.getcwd()} && {vnc_command}'],
62+
'port': 5901,
6263
'timeout': 30,
6364
'mappath': {'/': '/vnc_lite.html'},
6465
'new_browser_window': True,

0 commit comments

Comments
 (0)