#!/bin/bash ## this script is only run if actual change to domain/path is detected, if you're here either $domain or $path changed ## new location is available via $domain and $path (or $new_domain and $new_path variables if you want to be explicit) ## old values are available via, you guessed it, $old_domain and $old_path #================================================= # IMPORT GENERIC HELPERS #================================================= source _common.sh source /usr/share/yunohost/helpers #================================================= # STOP SYSTEMD SERVICE #================================================= ynh_script_progression --message="Stopping $app's systemd service..." --weight=1 #ynh_systemd_action --service_name="$app" --action="stop" --log_path="/var/log/$app/$app.log" ynh_systemd_action --service_name="php$phpversion-fpm" --action=stop ynh_systemd_action --service_name=nginx --action=stop #================================================= # MODIFY URL IN NGINX CONF #================================================= ynh_script_progression --message="Updating NGINX web server configuration..." --weight=1 # this will most likely adjust NGINX config correctly ynh_change_url_nginx_config #================================================= # SPECIFIC MODIFICATIONS #================================================= ## do any changes to files that reference specific installation domain/path, i.e. regenerate configs etc #================================================= # START SYSTEMD SERVICE #================================================= # ynh_script_progression --message="Starting $app's systemd service..." --weight=1 # # ynh_systemd_action --service_name="$app" --action="start" --log_path="/var/log/$app/$app.log" ynh_systemd_action --service_name="php$phpversion-fpm" --action=start ynh_systemd_action --service_name=nginx --action=start #================================================= # END OF SCRIPT #================================================= ynh_script_progression --message="Change of URL completed for $app" --last