mirror of
https://github.com/YunoHost-Apps/jappix_ynh.git
synced 2024-09-03 19:26:19 +02:00
13 lines
264 B
Bash
13 lines
264 B
Bash
#!/bin/bash
|
|
|
|
app="jappix"
|
|
|
|
# Retrieve arguments
|
|
domain=$(sudo yunohost app setting "$app" domain)
|
|
|
|
# Remove sources and configuration
|
|
sudo rm -rf "/var/www/${app}"
|
|
sudo rm -f "/etc/nginx/conf.d/${domain}.d/${app}.conf"
|
|
|
|
# Reload services
|
|
sudo service nginx reload
|