1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/bookstack_ynh.git synced 2024-09-03 18:16:02 +02:00
This commit is contained in:
ericgaspar 2021-01-29 10:47:58 +01:00
parent e037e4c232
commit 147a553811
No known key found for this signature in database
GPG key ID: 574F281483054D44
2 changed files with 4 additions and 4 deletions

View file

@ -39,8 +39,8 @@
"en": "Choose a path for BookStack", "en": "Choose a path for BookStack",
"fr": "Choisissez un chemin pour BookStack" "fr": "Choisissez un chemin pour BookStack"
}, },
"example": "/bookstack", "example": "/",
"default": "/bookstack" "default": "/"
}, },
{ {
"name": "language", "name": "language",

View file

@ -21,7 +21,7 @@ ynh_abort_if_errors
# Retrieve arguments # Retrieve arguments
domain=$YNH_APP_ARG_DOMAIN domain=$YNH_APP_ARG_DOMAIN
path_url=$YNH_APP_ARG_PATH path_url="/"
is_public=$YNH_APP_ARG_IS_PUBLIC is_public=$YNH_APP_ARG_IS_PUBLIC
language=$YNH_APP_ARG_LANGUAGE language=$YNH_APP_ARG_LANGUAGE
@ -129,7 +129,7 @@ popd
#================================================= #=================================================
# Set permissions to app files # Set permissions to app files
chown -R www-data:www-data $final_path chown -R $app: $final_path
chmod -R 755 $final_path chmod -R 755 $final_path
#================================================= #=================================================