reverseproxy_ynh/scripts/remove

37 lines
1.1 KiB
Text
Raw Normal View History

2016-06-20 23:43:51 +02:00
#!/bin/bash
2018-05-26 10:27:01 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2023-01-08 14:33:31 +01:00
source _common.sh
2018-05-26 10:27:01 +02:00
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2023-11-25 19:16:11 +01:00
#REMOVEME? ynh_script_progression --message="Loading installation settings..." --weight=1
2016-06-20 23:43:51 +02:00
# Retrieve arguments
2023-11-25 19:16:11 +01:00
#REMOVEME? app=$YNH_APP_INSTANCE_NAME
#REMOVEME? domain=$(ynh_app_setting_get --app=$app --key=domain)
2021-01-23 15:21:17 +01:00
#=================================================
# REVERSEPROXY_YNH
2021-01-23 15:21:17 +01:00
#=================================================
2016-06-20 23:43:51 +02:00
# Remove configuration files
ynh_secure_remove /etc/nginx/conf.d/$domain.d/$app.conf
2016-06-20 23:43:51 +02:00
2023-01-08 14:33:31 +01:00
# Reload nginx
2023-11-25 19:16:11 +01:00
#REMOVEME? ynh_script_progression --message="Reloading NGINX web server..." --weight=1
#REMOVEME? ynh_systemd_action --service_name=nginx --action=reload
2021-01-23 15:21:17 +01:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Removal of $app completed" --last