2020-05-08 20:42:27 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC STARTING
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2021-02-20 19:31:31 +01:00
|
|
|
source _common.sh
|
2021-05-14 10:25:11 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
2020-05-08 20:42:27 +02:00
|
|
|
|
|
|
|
|
2021-05-14 10:25:11 +02:00
|
|
|
#=================================================
|
|
|
|
# STANDARD MODIFICATIONS
|
2020-05-08 20:42:27 +02:00
|
|
|
#=================================================
|
|
|
|
# MODIFY URL IN NGINX CONF
|
|
|
|
#=================================================
|
2021-09-08 10:11:26 +02:00
|
|
|
ynh_script_progression --message="Updating NGINX web server configuration..." --weight=1
|
2020-05-08 20:42:27 +02:00
|
|
|
|
2023-05-07 18:10:21 +02:00
|
|
|
ynh_change_url_nginx_config
|
|
|
|
|
2020-05-08 20:42:27 +02:00
|
|
|
|
2021-09-08 10:11:26 +02:00
|
|
|
ynh_script_progression --message="Change of URL completed for $app" --last
|