mirror of
https://github.com/YunoHost-Apps/fittrackee_ynh.git
synced 2024-09-03 18:36:16 +02:00
commit
5386057994
6 changed files with 20 additions and 18 deletions
|
@ -5,7 +5,7 @@ It shall NOT be edited by hand.
|
|||
|
||||
# BookWyrm for YunoHost
|
||||
|
||||
[](https://dash.yunohost.org/appci/app/bookwyrm)  
|
||||
[](https://dash.yunohost.org/appci/app/bookwyrm)  
|
||||
[](https://install-app.yunohost.org/?app=bookwyrm)
|
||||
|
||||
*[Lire ce readme en français.](./README_fr.md)*
|
||||
|
|
|
@ -5,7 +5,7 @@ It shall NOT be edited by hand.
|
|||
|
||||
# BookWyrm pour YunoHost
|
||||
|
||||
[](https://dash.yunohost.org/appci/app/bookwyrm)  
|
||||
[](https://dash.yunohost.org/appci/app/bookwyrm)  
|
||||
[](https://install-app.yunohost.org/?app=bookwyrm)
|
||||
|
||||
*[Read this readme in english.](./README.md)*
|
||||
|
|
|
@ -15,7 +15,7 @@ DEFAULT_LANGUAGE="English"
|
|||
## Leave unset to allow all hosts
|
||||
#ALLOWED_HOSTS="localhost,127.0.0.1,[::1]"
|
||||
|
||||
MEDIA_ROOT=images/
|
||||
MEDIA_ROOT=__DATADIR__/images/
|
||||
|
||||
# Database configuration
|
||||
PGPORT=5432
|
||||
|
|
|
@ -8,7 +8,7 @@ location __PATH__/ {
|
|||
}
|
||||
|
||||
location /images/ {
|
||||
alias __FINALPATH__/images/;
|
||||
alias __DATADIR__/images/;
|
||||
}
|
||||
|
||||
location /static/ {
|
||||
|
|
|
@ -105,6 +105,21 @@ chmod 750 "$final_path"
|
|||
chmod -R o-rwx "$final_path"
|
||||
chown -R $app:www-data "$final_path"
|
||||
|
||||
#=================================================
|
||||
# CREATE DATA DIRECTORY
|
||||
#=================================================
|
||||
ynh_script_progression --message="Creating a data directory..." --weight=1
|
||||
|
||||
datadir=/home/yunohost.app/$app
|
||||
ynh_app_setting_set --app=$app --key=datadir --value=$datadir
|
||||
|
||||
mkdir -p $datadir
|
||||
mkdir -p $datadir/images
|
||||
|
||||
chmod 750 "$datadir"
|
||||
chmod -R o-rwx "$datadir"
|
||||
chown -R $app:www-data "$datadir"
|
||||
|
||||
#=================================================
|
||||
# CONFIGURE THEN INSTALL SCRIPT AND DEPENDENCIES
|
||||
#=================================================
|
||||
|
@ -143,20 +158,6 @@ ynh_script_progression --message="Configuring NGINX web server..." --weight=1
|
|||
# Create a dedicated NGINX config
|
||||
ynh_add_nginx_config
|
||||
|
||||
#=================================================
|
||||
# CREATE DATA DIRECTORY
|
||||
#=================================================
|
||||
ynh_script_progression --message="Creating a data directory..." --weight=1
|
||||
|
||||
datadir=/home/yunohost.app/$app
|
||||
ynh_app_setting_set --app=$app --key=datadir --value=$datadir
|
||||
|
||||
mkdir -p $datadir
|
||||
|
||||
chmod 750 "$datadir"
|
||||
chmod -R o-rwx "$datadir"
|
||||
chown -R $app:www-data "$datadir"
|
||||
|
||||
#=================================================
|
||||
# SETUP SYSTEMD
|
||||
#=================================================
|
||||
|
|
|
@ -25,6 +25,7 @@ final_path=$(ynh_app_setting_get --app=$app --key=final_path)
|
|||
#db_user=$(ynh_app_setting_get --app=$app --key=db_user)
|
||||
#db_pwd=$(ynh_app_setting_get --app=$app --key=psqlpwd)
|
||||
port=$(ynh_app_setting_get --app=$app --key=port)
|
||||
datadir=$(ynh_app_setting_get --app=$app --key=datadir)
|
||||
|
||||
admin_mail=$(ynh_user_get_info --username=$admin --key=username)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue