You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
558 B
Bash

#!/bin/bash
app=ynhexample
# Retrieve arguments
domain=$(sudo yunohost app setting $app domain)
path=$(sudo yunohost app setting $app path)
admin=$(sudo yunohost app setting $app admin)
is_public=$(sudo yunohost app setting $app is_public)
# Remove sources
sudo rm -rf /var/www/$app
# Remove configuration files
sudo rm -f /etc/nginx/conf.d/$domain.d/$app.conf
# If a dedicated php-fpm process is used :
#
#sudo rm -f /etc/php5/fpm/pool.d/$app.conf
#sudo service php5-fpm reload
# Restart services
sudo service nginx reload
sudo yunohost app ssowatconf