Skip to content

Instantly share code, notes, and snippets.

@kashitan
Last active August 29, 2015 14:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kashitan/7fdf1f7c5533fabe7946 to your computer and use it in GitHub Desktop.
Save kashitan/7fdf1f7c5533fabe7946 to your computer and use it in GitHub Desktop.
JupyterHub設定ファイル
c.JupyterHub.db_url = 'sqlite:////etc/jupyterhub/jupyterhub.sqlite'
c.JupyterHub.base_url = '/jupyter/'
c.JupyterHub.ssl_key = '[鍵ファイルのパス]'
c.JupyterHub.ssl_cert = '[証明書ファイルのパス]'
c.JupyterHub.cookie_secret_file = '/etc/jupyterhub/jupyterhub_cookie_secret'
c.Authenticator.admin_users = {'管理者ユーザー1', '管理者ユーザー2'}
c.JupyterHub.port = [ポート]
c.Spawner.notebook_dir = '~/notebooks'
c.Authenticator.whitelist = {'管理者ユーザー1', '管理者ユーザー2', '一般ユーザー1', '一般ユーザー2'}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment