From 47ef27af96a4bc6f7d772b8a55ba4df2469e71e0 Mon Sep 17 00:00:00 2001 From: yuvipanda Date: Wed, 27 Jun 2018 16:04:35 -0700 Subject: [PATCH] Read yaml config from config.yaml, not jupyterhub.yaml Consistent with z2jh's nomenclature of config.yaml --- tljh/jupyterhub_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tljh/jupyterhub_config.py b/tljh/jupyterhub_config.py index 4889a2f..95b62ef 100644 --- a/tljh/jupyterhub_config.py +++ b/tljh/jupyterhub_config.py @@ -29,4 +29,4 @@ c.JupyterHub.port = 80 c.SystemdSpawner.extra_paths = [os.path.join(USER_ENV_PREFIX, 'bin')] -configurer.apply_yaml_config(os.path.join(INSTALL_PREFIX, 'jupyterhub.yaml'), c) +configurer.apply_yaml_config(os.path.join(INSTALL_PREFIX, 'config.yaml'), c)