1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/jupyterlab_ynh.git synced 2024-09-03 19:26:35 +02:00

Fix intall

This commit is contained in:
Pierre Bourré 2018-12-28 23:05:58 +01:00
parent 7949e92c59
commit 7e2db90d80
2 changed files with 1 additions and 2 deletions

View file

@ -92,7 +92,7 @@ c.JupyterHub.authenticator_class = 'ldapauthenticator.LDAPAuthenticator'
## The public facing URL of the whole JupyterHub application. ## The public facing URL of the whole JupyterHub application.
# #
# This is the address on which the proxy will bind. Sets protocol, ip, base_url # This is the address on which the proxy will bind. Sets protocol, ip, base_url
c.JupyterHub.bind_url = '__URL__:__PORT__/__PATH__' c.JupyterHub.bind_url = '0.0.0.0:__PORT__/__PATH__'
## Whether to shutdown the proxy when the Hub shuts down. ## Whether to shutdown the proxy when the Hub shuts down.
# #

View file

@ -11,7 +11,6 @@ final_path="/opt/$app"
#================================================= #=================================================
create_dir() { create_dir() {
mkdir -p "$config_path" mkdir -p "$config_path"
mkdir -p "$final_path"
} }
#================================================= #=================================================