2017-09-10 09:25:22 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
2022-06-24 05:33:16 +02:00
|
|
|
# MODIFY URL IN NGINX CONF
|
2017-09-10 09:25:22 +02:00
|
|
|
#=================================================
|
2020-11-12 18:28:43 +01:00
|
|
|
ynh_script_progression --message="Updating NGINX web server configuration..." --weight=2
|
2017-09-10 09:25:22 +02:00
|
|
|
|
2023-10-05 21:38:07 +02:00
|
|
|
ynh_change_url_nginx_config
|
|
|
|
|
2019-02-17 20:58:31 +01:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2021-05-16 19:41:11 +02:00
|
|
|
ynh_script_progression --message="Change of URL completed for $app" --last
|