2023-01-08 14:33:31 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
source _common.sh
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RETRIEVE ARGUMENTS FROM THE MANIFEST
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
old_domain=$YNH_APP_OLD_DOMAIN
|
|
|
|
new_domain=$YNH_APP_NEW_DOMAIN
|
|
|
|
old_path=$YNH_APP_OLD_PATH
|
|
|
|
new_path=$YNH_APP_NEW_PATH
|
|
|
|
|
|
|
|
# Path availability is already checked for
|
|
|
|
|
|
|
|
#=================================================
|
2023-01-08 14:46:10 +01:00
|
|
|
# REVERSEPROXY_YNH
|
2023-01-08 14:33:31 +01:00
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Nginx configuration
|
2023-01-08 15:49:37 +01:00
|
|
|
ynh_script_progression --message="Configuring NGINX web server..." --weight=1
|
|
|
|
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
|
|
|
|
path_url="$new_path"
|
|
|
|
domain="$old_domain"
|
|
|
|
proxy_path="$(ynh_app_setting_get --app=$app --key=proxy_path)"
|
|
|
|
assets_path="$(ynh_app_setting_get --app=$app --key=assets_path)"
|
2023-01-10 13:09:57 +01:00
|
|
|
|
|
|
|
# Validate reverse proxy destination
|
|
|
|
rp_validate_proxy_path
|
|
|
|
|
|
|
|
# Validate assets_path
|
|
|
|
rp_validate_assets_path
|
|
|
|
|
|
|
|
# Special case for "/" path_url
|
|
|
|
rp_handle_webroot
|
|
|
|
|
2023-01-08 15:49:37 +01:00
|
|
|
ynh_add_nginx_config
|
|
|
|
|
|
|
|
# Move file to new domain if domain has changed
|
2023-01-08 14:33:31 +01:00
|
|
|
[[ "$old_domain" != "$new_domain" ]] && mv /etc/nginx/conf.d/$old_domain.d/$app.conf /etc/nginx/conf.d/$new_domain.d/$app.conf
|
|
|
|
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Changing URL of $app completed" --last
|