2014-07-20 14:09:41 +02:00
|
|
|
#!/bin/bash
|
2015-10-23 16:24:30 +02:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2017-01-17 17:51:12 +01:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
source _common.sh
|
2016-07-23 14:54:26 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
2014-07-20 14:09:41 +02:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# RETRIEVE ARGUMENTS FROM THE MANIFEST
|
|
|
|
#=================================================
|
|
|
|
|
2023-01-12 17:26:58 +01:00
|
|
|
fpm_footprint="low"
|
|
|
|
fpm_free_footprint=0
|
|
|
|
fpm_usage="low"
|
2022-10-19 00:46:33 +02:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# STORE SETTINGS FROM MANIFEST
|
|
|
|
#=================================================
|
2016-07-23 14:54:26 +02:00
|
|
|
|
2023-01-12 17:26:58 +01:00
|
|
|
ynh_app_setting_set --app=$app --key=fpm_footprint --value=$fpm_footprint
|
|
|
|
ynh_app_setting_set --app=$app --key=fpm_free_footprint --value=$fpm_free_footprint
|
|
|
|
ynh_app_setting_set --app=$app --key=fpm_usage --value=$fpm_usage
|
2017-10-19 14:57:07 +02:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2019-05-06 20:34:37 +02:00
|
|
|
ynh_script_progression --message="Setting up source files..." --weight=2
|
2017-10-21 22:52:21 +02:00
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2023-03-06 13:24:53 +01:00
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
2019-02-15 19:49:22 +01:00
|
|
|
|
2023-03-06 13:24:53 +01:00
|
|
|
mkdir -p $install_dir/sessions/
|
2014-07-20 14:09:41 +02:00
|
|
|
|
2023-03-06 13:24:53 +01:00
|
|
|
chown -R $app $install_dir/{data,plugins,sessions}
|
|
|
|
chmod -R 700 $install_dir/sessions
|
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2021-06-07 23:50:22 +02:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2020-10-30 15:08:59 +01:00
|
|
|
ynh_script_progression --message="Configuring PHP-FPM..." --weight=16
|
2017-10-21 22:52:21 +02:00
|
|
|
|
2020-10-30 15:08:59 +01:00
|
|
|
# Create a dedicated PHP-FPM config
|
2023-01-12 17:26:58 +01:00
|
|
|
ynh_add_fpm_config --usage=$fpm_usage --footprint=$fpm_footprint
|
2017-10-21 22:52:21 +02:00
|
|
|
|
2022-10-19 00:46:33 +02:00
|
|
|
# Create a dedicated NGINX config
|
2022-06-06 15:19:52 +02:00
|
|
|
ynh_add_nginx_config
|
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC SETUP
|
|
|
|
#=================================================
|
2022-10-19 00:46:33 +02:00
|
|
|
# ADD A CONFIGURATION
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
2022-10-19 00:46:33 +02:00
|
|
|
ynh_script_progression --message="Adding a configuration file..." --weight=1
|
2017-10-21 22:52:21 +02:00
|
|
|
|
2021-06-11 23:50:05 +02:00
|
|
|
dir="__DIR__"
|
2023-03-06 13:24:53 +01:00
|
|
|
ynh_add_config --template="../conf/config.php" --destination="$install_dir/config.php"
|
2021-06-07 23:50:22 +02:00
|
|
|
|
2023-03-06 13:24:53 +01:00
|
|
|
chmod 400 "$install_dir/config.php"
|
|
|
|
chown $app "$install_dir/config.php"
|
2014-07-20 18:10:20 +02:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
2019-02-15 19:49:22 +01:00
|
|
|
# DATABASE INITIALIZATION
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
2019-05-06 20:34:37 +02:00
|
|
|
ynh_script_progression --message="Initializing database..." --weight=7
|
2014-07-20 14:09:41 +02:00
|
|
|
|
2023-03-06 13:24:53 +01:00
|
|
|
ynh_mysql_connect_as --user="$db_user" --password="$db_pwd" --database="$db_name" < "$install_dir/app/Schema/Sql/mysql.sql"
|
2021-02-26 12:26:48 +01:00
|
|
|
|
2023-03-06 13:24:53 +01:00
|
|
|
pushd $install_dir
|
2020-06-07 19:20:26 +02:00
|
|
|
# Launch database migration
|
2021-02-26 12:26:48 +01:00
|
|
|
php$phpversion cli db:migrate --no-interaction --verbose
|
|
|
|
popd
|
2017-10-19 14:57:07 +02:00
|
|
|
|
2020-10-30 15:08:59 +01:00
|
|
|
#=================================================
|
|
|
|
# SETUP CRON
|
|
|
|
#=================================================
|
2021-02-26 12:26:48 +01:00
|
|
|
ynh_script_progression --message="Setuping a cron..." --weight=1
|
|
|
|
|
2022-06-06 12:36:32 +02:00
|
|
|
ynh_add_config --template="../conf/cron" --destination="/etc/cron.d/$app"
|
|
|
|
chown root: "/etc/cron.d/$app"
|
2020-12-28 08:15:16 +01:00
|
|
|
chmod 644 "/etc/cron.d/$app"
|
2020-10-30 15:08:59 +01:00
|
|
|
|
2022-10-19 00:46:33 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# SETUP FAIL2BAN
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Configuring Fail2Ban..." --weight=10
|
|
|
|
|
|
|
|
# Create a dedicated Fail2Ban config
|
|
|
|
ynh_add_fail2ban_config --logpath="/var/log/nginx/${domain}-error.log" --failregex="^.*authentication failure\" while reading response header from upstream, client: <HOST>,.*$" --max_retry=5
|
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
2019-02-17 20:55:37 +01:00
|
|
|
# END OF SCRIPT
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
2016-07-23 17:37:17 +02:00
|
|
|
|
2022-05-27 23:17:20 +02:00
|
|
|
ynh_script_progression --message="Installation of $app completed" --last
|