1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/castopod_ynh.git synced 2024-09-03 18:16:14 +02:00
This commit is contained in:
ericgaspar 2021-04-03 15:40:08 +02:00
parent 1309bc430d
commit b9ae7c5fd7
No known key found for this signature in database
GPG key ID: 574F281483054D44
3 changed files with 25 additions and 14 deletions

View file

@ -55,13 +55,13 @@ db_user=$db_name
ynh_app_setting_set --app=$app --key=db_name --value=$db_name ynh_app_setting_set --app=$app --key=db_name --value=$db_name
ynh_mysql_setup_db --db_user=$db_user --db_name=$db_name ynh_mysql_setup_db --db_user=$db_user --db_name=$db_name
# #================================================= #=================================================
# # CREATE DEDICATED USER # CREATE DEDICATED USER
# #================================================= #=================================================
# ynh_script_progression --message="Configuring system user..." --weight=1 ynh_script_progression --message="Configuring system user..." --weight=1
# # Create a system user # Create a system user
# ynh_system_user_create --username=$app --home_dir=$final_path ynh_system_user_create --username=$app --home_dir=$final_path
#================================================= #=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE # DOWNLOAD, CHECK AND UNPACK SOURCE
@ -104,6 +104,8 @@ ynh_add_config --template="../conf/.env.example" --destination="$final_path/.env
ynh_script_progression --message="Setuping a cron..." ynh_script_progression --message="Setuping a cron..."
ynh_add_config --template="../conf/cron" --destination="/etc/cron.d/$app" ynh_add_config --template="../conf/cron" --destination="/etc/cron.d/$app"
chown root: "/etc/cron.d/$app"
chmod 644 "/etc/cron.d/$app"
#================================================= #=================================================
# GENERIC FINALIZATION # GENERIC FINALIZATION
@ -115,9 +117,10 @@ ynh_add_config --template="../conf/cron" --destination="/etc/cron.d/$app"
# chown -R $app:$app $final_path # chown -R $app:$app $final_path
# chmod 600 $final_path/.env # chmod 600 $final_path/.env
chown -R root:root $final_path chown -R $app: $final_path
chown -R www-data:www-data $final_path/writable chown -R $app:www-data $final_path/writable
chown -R www-data:www-data $final_path/public/media chown -R $app:www-data $final_path/public/media
chmod 640 $final_path/.env
#================================================= #=================================================
# SETUP SSOWAT # SETUP SSOWAT

View file

@ -71,9 +71,13 @@ ynh_restore_file --origin_path="$final_path"
# RESTORE USER RIGHTS # RESTORE USER RIGHTS
#================================================= #=================================================
# Set permissions to app files # # Set permissions to app files
chown -R $app:$app $final_path # chown -R $app:$app $final_path
chmod 600 $final_path/.env # chmod 600 $final_path/.env
chown -R root:root $final_path
chown -R www-data:www-data $final_path/writable
chown -R www-data:www-data $final_path/public/media
#================================================= #=================================================
# RESTORE THE PHP-FPM CONFIGURATION # RESTORE THE PHP-FPM CONFIGURATION

View file

@ -107,9 +107,13 @@ ynh_add_fpm_config --package="$extra_php_dependencies"
# SECURE FILES AND DIRECTORIES # SECURE FILES AND DIRECTORIES
#================================================= #=================================================
# Set permissions to app files # # Set permissions to app files
# chown -R $app:$app $final_path
# chmod 600 $final_path/.env
chown -R $app:$app $final_path chown -R $app:$app $final_path
chmod 600 $final_path/.env chown -R www-data:www-data $final_path/writable
chown -R www-data:www-data $final_path/public/media
#================================================= #=================================================
# RELOAD NGINX # RELOAD NGINX