2017-03-25 18:31:20 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
2020-12-31 23:19:32 +01:00
|
|
|
# REMOVE NGINX CONFIGURATION
|
2017-03-25 18:31:20 +01:00
|
|
|
#=================================================
|
2024-09-02 14:47:01 +02:00
|
|
|
ynh_script_progression "Removing NGINX web server configuration..."
|
2017-03-25 18:31:20 +01:00
|
|
|
|
2024-09-02 14:47:01 +02:00
|
|
|
ynh_config_remove_nginx
|
2017-03-25 18:31:20 +01:00
|
|
|
|
2024-09-02 14:47:01 +02:00
|
|
|
ynh_config_remove_phpfpm
|
2017-03-25 18:31:20 +01:00
|
|
|
|
2020-12-31 23:19:32 +01:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2017-03-25 18:31:20 +01:00
|
|
|
|
2024-09-02 14:47:01 +02:00
|
|
|
ynh_script_progression "Removal of $app completed"
|