2021-12-12 10:25:13 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC STARTING
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# MODIFY URL IN NGINX CONF
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Updating NGINX web server configuration..." --weight=1
|
|
|
|
|
2023-03-02 16:32:11 +01:00
|
|
|
ynh_change_url_nginx_config
|
2021-12-12 10:25:13 +01:00
|
|
|
|
2022-06-19 21:58:27 +02:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC MODIFICATIONS
|
2021-12-12 10:25:13 +01:00
|
|
|
#=================================================
|
|
|
|
# UPGRADE A CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Updating a configuration file..." --weight=1
|
|
|
|
|
|
|
|
domain=${new_domain%/}
|
|
|
|
path=${new_path%/}
|
|
|
|
dir="__DIR__"
|
|
|
|
|
2023-03-02 16:32:11 +01:00
|
|
|
ynh_backup_if_checksum_is_different --file="$install_dir/config.php"
|
2022-07-06 06:43:15 +02:00
|
|
|
|
2021-12-12 10:25:13 +01:00
|
|
|
if [ "$new_path" == "/" ]; then
|
2023-03-02 16:32:11 +01:00
|
|
|
ynh_add_config --template="../conf/config-domain.php" --destination="$install_dir/config.php"
|
2021-12-12 10:25:13 +01:00
|
|
|
else
|
2023-03-02 16:32:11 +01:00
|
|
|
ynh_add_config --template="../conf/config-path.php" --destination="$install_dir/config.php"
|
2021-12-12 10:25:13 +01:00
|
|
|
fi
|
|
|
|
|
2023-03-02 16:32:11 +01:00
|
|
|
ynh_store_file_checksum --file="$install_dir/config.php"
|
2021-12-12 10:25:13 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Change of URL completed for $app" --last
|