2014-10-20 18:55:53 +02:00
|
|
|
#!/bin/bash
|
2016-04-26 15:30:49 +02:00
|
|
|
|
2016-05-18 22:31:45 +02:00
|
|
|
# See comments in install script
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
2014-10-20 18:55:53 +02:00
|
|
|
|
2016-05-18 22:31:45 +02:00
|
|
|
# Source YunoHost helpers
|
2016-06-14 14:11:00 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
2016-05-18 22:31:45 +02:00
|
|
|
|
|
|
|
# Retrieve app settings
|
|
|
|
domain=$(ynh_app_setting_get "$app" domain)
|
2014-10-20 18:55:53 +02:00
|
|
|
|
|
|
|
# Remove sources
|
|
|
|
sudo rm -rf /var/www/$app
|
|
|
|
|
2016-06-14 14:09:29 +02:00
|
|
|
# Remove nginx configuration file
|
2014-10-20 18:55:53 +02:00
|
|
|
sudo rm -f /etc/nginx/conf.d/$domain.d/$app.conf
|
|
|
|
|
2016-06-13 22:25:00 +02:00
|
|
|
# Reload nginx service
|
2014-10-20 18:55:53 +02:00
|
|
|
sudo service nginx reload
|