2018-09-03 23:31:52 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC STARTING
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD MODIFICATIONS
|
|
|
|
#=================================================
|
|
|
|
# MODIFY URL IN NGINX CONF
|
|
|
|
#=================================================
|
2021-01-20 08:52:18 +01:00
|
|
|
ynh_script_progression --message="Updating NGINX web server configuration..." --weight=3
|
2018-09-03 23:31:52 +02:00
|
|
|
|
2023-04-27 23:04:36 +02:00
|
|
|
ynh_change_url_nginx_config
|
2020-07-10 19:22:37 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2018-09-03 23:31:52 +02:00
|
|
|
|
2021-01-20 08:52:18 +01:00
|
|
|
ynh_script_progression --message="Change of URL completed for $app" --last
|