From f03e093b90cf32f88725b336c152829a19f62ed0 Mon Sep 17 00:00:00 2001 From: yuvipanda Date: Wed, 27 Jun 2018 02:27:37 -0700 Subject: [PATCH] Explicitly tell JupyterHub it is running on port 80 Because it is! --- tljh/jupyterhub_config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tljh/jupyterhub_config.py b/tljh/jupyterhub_config.py index 6340543..89cdcd5 100644 --- a/tljh/jupyterhub_config.py +++ b/tljh/jupyterhub_config.py @@ -25,6 +25,7 @@ class CustomSpawner(SystemdSpawner): c.JupyterHub.spawner_class = CustomSpawner c.ConfigurableHTTPProxy.should_start = False +c.JupyterHub.port = 80 c.SystemdSpawner.extra_paths = [os.path.join(USER_ENV_PREFIX, 'bin')]