2016-06-20 23:43:51 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-05-26 10:27:01 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# ENSURE DOWNWARD COMPATIBILITY
|
|
|
|
#=================================================
|
|
|
|
|
2023-12-05 00:54:55 +01:00
|
|
|
if [[ "${redirect_type:-}" == *"proxy"* ]]
|
2016-11-23 21:49:09 +01:00
|
|
|
then
|
2023-12-05 00:54:55 +01:00
|
|
|
redirect_type="reverseproxy"
|
|
|
|
else
|
|
|
|
redirect_type="redirect"
|
2016-11-23 21:49:09 +01:00
|
|
|
fi
|
2023-12-05 00:54:55 +01:00
|
|
|
ynh_app_setting_set $app 'redirect_type' $redirect_type
|
2016-11-23 21:49:09 +01:00
|
|
|
|
2023-12-05 00:54:55 +01:00
|
|
|
if [[ -z "${target:-}" ]] && [[ -n "${redirect_path:-}" ]]
|
2019-05-15 18:35:57 +02:00
|
|
|
then
|
2023-12-05 00:54:55 +01:00
|
|
|
target="$redirect_path"
|
|
|
|
ynh_app_setting_set $app target "$redirect_path"
|
2019-05-15 18:35:57 +02:00
|
|
|
fi
|
|
|
|
|
2019-05-15 18:42:44 +02:00
|
|
|
#=================================================
|
|
|
|
# CONFIGURE NGINX
|
|
|
|
#=================================================
|
2023-12-05 00:54:55 +01:00
|
|
|
ynh_script_progression --message="Configuring NGINX web server..." --weight=1
|
2019-05-15 18:42:44 +02:00
|
|
|
|
2023-12-05 00:54:55 +01:00
|
|
|
mv ../conf/{nginx-$redirect_type.conf,nginx.conf}
|
|
|
|
ynh_add_nginx_config
|
2021-01-23 15:21:17 +01:00
|
|
|
|
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --last
|