2013-12-19 03:02:51 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-06-25 05:57:41 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2020-11-01 16:00:22 +01:00
|
|
|
ynh_script_progression --message="Setting up source files..."
|
2018-06-25 05:57:41 +02:00
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2023-03-21 18:14:35 +01:00
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
2013-12-19 03:02:51 +01:00
|
|
|
|
2023-03-21 18:14:35 +01:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chmod -R u+rwX $install_dir/{cache/,data/,pagecache/,tmp/}
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2021-11-22 19:20:21 +01:00
|
|
|
|
2018-06-25 05:57:41 +02:00
|
|
|
#=================================================
|
|
|
|
# PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2020-11-25 10:36:44 +01:00
|
|
|
ynh_script_progression --message="Configuring PHP-FPM..."
|
2019-04-05 12:29:32 +02:00
|
|
|
|
2020-11-24 18:00:33 +01:00
|
|
|
# Create a dedicated PHP-FPM config
|
2021-11-22 19:20:21 +01:00
|
|
|
ynh_add_fpm_config --usage=low --footprint=low
|
2013-12-19 03:02:51 +01:00
|
|
|
|
2018-09-27 22:44:34 +02:00
|
|
|
#=================================================
|
2022-07-22 00:47:28 +02:00
|
|
|
# NGINX CONFIGURATION
|
2018-09-27 22:44:34 +02:00
|
|
|
#=================================================
|
2022-07-22 00:47:28 +02:00
|
|
|
ynh_script_progression --message="Configuring NGINX web server..."
|
2018-09-27 22:44:34 +02:00
|
|
|
|
2022-07-22 00:47:28 +02:00
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config
|
2018-09-27 22:44:34 +02:00
|
|
|
|
2020-11-25 10:34:14 +01:00
|
|
|
#=================================================
|
2022-07-22 00:47:28 +02:00
|
|
|
# SPECIFIC SETUP
|
2020-11-25 10:34:14 +01:00
|
|
|
#=================================================
|
2022-07-22 00:47:28 +02:00
|
|
|
# ADD A CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Adding a configuration file..."
|
2020-11-25 10:34:14 +01:00
|
|
|
|
|
|
|
# Get the timezone
|
|
|
|
timezone=$(cat /etc/timezone)
|
|
|
|
|
|
|
|
# Generate the salt
|
2022-07-22 00:47:28 +02:00
|
|
|
salt=$(php$phpversion -r 'echo sha1(uniqid("", true) ."_". mt_rand());')
|
2020-11-25 10:34:14 +01:00
|
|
|
|
|
|
|
# Generate the hash with the password
|
2022-09-03 19:26:13 +02:00
|
|
|
hash=$(echo -n "${password}${admin}${salt}" | sha1sum | awk '{print $1}')
|
2020-11-25 10:34:14 +01:00
|
|
|
|
|
|
|
# Generate the API secret
|
|
|
|
secret=$(php${YNH_PHP_VERSION} -r "echo str_shuffle(substr(hash_hmac('sha512', uniqid('${salt}'), '${admin}'), 10, 12));")
|
|
|
|
|
|
|
|
# Set default_private_links. By default, make them public if the app is public.
|
2023-03-21 18:14:35 +01:00
|
|
|
if ynh_permission_has_user --permission=main --user=visitors
|
2020-11-25 10:34:14 +01:00
|
|
|
then
|
|
|
|
default_private_links=false
|
|
|
|
else
|
|
|
|
default_private_links=true
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Installing the config file and replace the placeholders
|
2023-03-21 18:14:35 +01:00
|
|
|
ynh_add_config --template="../conf/config.json.php" --destination="$install_dir/data/config.json.php"
|
|
|
|
chmod 700 "$install_dir/data/config.json.php"
|
2018-09-27 22:44:34 +02:00
|
|
|
|
2022-07-22 00:47:28 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# SETUP LOGROTATE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Configuring log rotation..."
|
|
|
|
|
|
|
|
# Use logrotate to manage application logfile(s)
|
2023-03-21 18:14:35 +01:00
|
|
|
touch "$install_dir/data/log.txt"
|
|
|
|
ynh_use_logrotate "$install_dir/data/log.txt"
|
|
|
|
chown $app:www-data "$install_dir/data/log.txt"
|
2022-07-22 00:47:28 +02:00
|
|
|
|
2018-09-27 22:44:34 +02:00
|
|
|
#=================================================
|
|
|
|
# SETUP FAIL2BAN
|
|
|
|
#=================================================
|
2020-11-24 18:00:33 +01:00
|
|
|
ynh_script_progression --message="Configuring Fail2Ban..."
|
2020-11-01 16:00:22 +01:00
|
|
|
|
2020-11-24 18:00:33 +01:00
|
|
|
# Create a dedicated Fail2Ban config
|
2023-03-21 18:14:35 +01:00
|
|
|
ynh_add_fail2ban_config --logpath="$install_dir/data/log.txt" --failregex="\s-\s<HOST>\s-\sLogin failed for user.*$"
|
2019-04-05 12:29:32 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2020-11-01 16:00:22 +01:00
|
|
|
ynh_script_progression --message="Installation of $app completed"
|