mirror of
https://github.com/YunoHost-Apps/linuxdash_ynh.git
synced 2024-09-03 19:36:07 +02:00
10 lines
249 B
Bash
Executable file
10 lines
249 B
Bash
Executable file
#!/bin/bash
|
|
|
|
domain=$(sudo yunohost app setting linuxdash domain)
|
|
|
|
# Remove sources and nginx configuration
|
|
sudo rm -rf /var/www/linuxdash
|
|
sudo rm -f /etc/nginx/conf.d/$domain.d/linuxdash.conf
|
|
|
|
# Reload nginx configuration
|
|
sudo service nginx reload
|