Files
the-littlest-jupyterhub/tljh/systemd-units/jupyterhub.service

25 lines
722 B
SYSTEMD
Raw Normal View History

# Template file for JupyterHub systemd service
# Uses simple string.format() for 'templating'
[Unit]
2019-01-22 16:24:38 +02:00
# Traefik must have successfully started *before* we launch JupyterHub
Requires=traefik.service
After=traefik.service
[Service]
User=root
Restart=always
# jupyterhub process should have no access to home directories
ProtectHome=tmpfs
WorkingDirectory={install_prefix}/state
# Protect bits that are normally shared across the system
PrivateTmp=yes
PrivateDevices=yes
ProtectKernelTunables=yes
ProtectKernelModules=yes
Environment=TLJH_INSTALL_PREFIX={install_prefix}
ExecStart={python_interpreter_path} -m jupyterhub.app -f {jupyterhub_config_path}
[Install]
# Start service when system boots
WantedBy=multi-user.target