#!/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 #REMOVEME? ynh_abort_if_errors #================================================= # RETRIEVE ARGUMENTS FROM THE MANIFEST #================================================= #REMOVEME? app=$YNH_APP_INSTANCE_NAME #REMOVEME? old_domain=$YNH_APP_OLD_DOMAIN #REMOVEME? new_domain=$YNH_APP_NEW_DOMAIN #REMOVEME? old_path=$YNH_APP_OLD_PATH #REMOVEME? new_path=$YNH_APP_NEW_PATH # Path availability is already checked for #================================================= # REVERSEPROXY_YNH #================================================= # Nginx configuration ynh_script_progression --message="Configuring NGINX web server..." --weight=1 #REMOVEME? #REMOVEME? install_dir=$(ynh_app_setting_get --app=$app --key=install_dir) path="$new_path" domain="$old_domain" #REMOVEME? proxy_path="$(ynh_app_setting_get --app=$app --key=proxy_path)" #REMOVEME? assets_path="$(ynh_app_setting_get --app=$app --key=assets_path)" # Validate reverse proxy destination rp_validate_proxy_path # Validate assets_path rp_validate_assets_path # Special case for "/" path rp_handle_webroot #REMOVEME? nginx_conf_path=/etc/nginx/conf.d/$old_domain.d/$app.conf #REMOVEME? ynh_backup_if_checksum_is_different --file="$nginx_conf_path" #REMOVEME? ynh_add_nginx_config # Move file to new domain if domain has changed #REMOVEME? if [[ "$old_domain" != "$new_domain" ]]; then #REMOVEME? new_nginx_conf_path=/etc/nginx/conf.d/$new_domain.d/$app.conf #REMOVEME? ynh_delete_file_checksum --file="$nginx_conf_path" #REMOVEME? mv $nginx_conf_path $new_nginx_conf_path #REMOVEME? ynh_store_file_checksum --file="$new_nginx_conf_path" fi #================================================= # END OF SCRIPT #================================================= ynh_script_progression --message="Changing URL of $app completed" --last