PhyrePanel/bin/nginx-website-delete.sh

17 lines
331 B
Bash
Raw Permalink Normal View History

2023-11-27 18:59:11 +00:00
#!/bin/bash
# Path to NGINX sites-available directory
2023-11-27 21:05:35 +00:00
SITES_AVAILABLE_DIR="/etc/nginx/sites-available"
SITES_ENABLED_DIR="/etc/nginx/sites-enabled"
2023-11-27 18:59:11 +00:00
# Delete the site
2023-11-27 21:05:35 +00:00
rm -rf $SITES_AVAILABLE_DIR/$1.conf
rm -rf $SITES_ENABLED_DIR/$1.conf
rm -rf /var/www/$1
2023-11-27 18:59:11 +00:00
# Reload NGINX
service nginx reload
echo "Deleted site $1"
echo "done!"