Merge pull request #228 from orhtej2/patch-2

Explain change_url a little bit.
This commit is contained in:
Alexandre Aubin 2024-01-28 23:46:27 +01:00 committed by GitHub
commit 58ddacbbbd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,5 +1,9 @@
#!/bin/bash #!/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
#================================================= #=================================================
# GENERIC STARTING # GENERIC STARTING
#================================================= #=================================================
@ -23,6 +27,7 @@ ynh_systemd_action --service_name="$app" --action="stop" --log_path="/var/log/$a
#================================================= #=================================================
ynh_script_progression --message="Updating NGINX web server configuration..." --weight=1 ynh_script_progression --message="Updating NGINX web server configuration..." --weight=1
# this will most likely adjust NGINX config correctly
ynh_change_url_nginx_config ynh_change_url_nginx_config
#================================================= #=================================================
@ -31,6 +36,8 @@ ynh_change_url_nginx_config
# ... # ...
#================================================= #=================================================
## do any changes to files that reference specific installation domain/path, i.e. regenerate configs etc
#================================================= #=================================================
# GENERIC FINALISATION # GENERIC FINALISATION
#================================================= #=================================================