Silence stopping Nginx

no ref

- No reason beyond making things quieter
This commit is contained in:
James Loh
2025-07-09 15:10:46 +10:00
parent 7f332ff9ac
commit c9b43fb74e

View File

@@ -497,8 +497,8 @@ main() {
read -rp 'Start Caddy Webserver for automatic HTTPS? This will stop Nginx. (y/n): ' confirm
if [[ "${confirm,,}" == "y" ]]; then
echo "Stopping Nginx..."
systemctl stop nginx || true
systemctl disable nginx || true
systemctl stop nginx -q || true
systemctl disable nginx -q || true
echo "Starting Caddy..."
docker compose up caddy -d