2021-12-12 10:25:13 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# MODIFY URL IN NGINX CONF
|
|
|
|
#=================================================
|
2024-08-31 15:06:53 +02:00
|
|
|
ynh_script_progression "Updating NGINX web server configuration..."
|
2021-12-12 10:25:13 +01:00
|
|
|
|
2024-08-31 15:06:53 +02:00
|
|
|
ynh_config_change_url_nginx
|
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
|
|
|
|
#=================================================
|
2024-08-31 15:06:53 +02:00
|
|
|
ynh_script_progression "Updating configuration..."
|
2021-12-12 10:25:13 +01:00
|
|
|
|
|
|
|
domain=${new_domain%/}
|
|
|
|
path=${new_path%/}
|
|
|
|
dir="__DIR__"
|
|
|
|
|
2024-08-31 15:06:53 +02:00
|
|
|
ynh_backup_if_checksum_is_different "$install_dir/config.php"
|
2022-07-05 22:41:20 +02:00
|
|
|
|
2021-12-12 10:25:13 +01:00
|
|
|
if [ "$new_path" == "/" ]; then
|
2024-08-31 15:06:53 +02:00
|
|
|
ynh_config_add --template="config-domain.php" --destination="$install_dir/config.php"
|
2021-12-12 10:25:13 +01:00
|
|
|
else
|
2024-08-31 15:06:53 +02:00
|
|
|
ynh_config_add --template="config-path.php" --destination="$install_dir/config.php"
|
2021-12-12 10:25:13 +01:00
|
|
|
fi
|
|
|
|
|
2024-08-31 15:06:53 +02:00
|
|
|
ynh_store_file_checksum "$install_dir/config.php"
|
2021-12-12 10:25:13 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2024-08-31 15:06:53 +02:00
|
|
|
ynh_script_progression "Change of URL completed for $app"
|