2018-01-24 20:18:53 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2020-12-07 11:54:33 +01:00
|
|
|
ynh_script_progression --message="Removing NGINX web server configuration"
|
2018-01-24 20:18:53 +01:00
|
|
|
|
|
|
|
# Remove the dedicated nginx config
|
|
|
|
ynh_remove_nginx_config
|
|
|
|
|
2020-12-07 11:54:33 +01:00
|
|
|
# Remove the dedicated PHP-FPM config
|
2018-01-24 20:18:53 +01:00
|
|
|
ynh_remove_fpm_config
|
|
|
|
|
2019-03-09 10:14:08 +01:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2020-12-07 11:54:33 +01:00
|
|
|
ynh_script_progression --message="Removal of $app completed"
|