#!/bin/sh # acme-deploy.sh — Deploy hook for acme.sh (Vacuum Wall) # # Called by acme.sh after every successful certificate issue or renewal. # The nginx config reads certs directly from ~/.acme.sh/, so we only # need to reload nginx. If the config is invalid (e.g. apply hasn't # been called yet) we exit silently — the user will reload via WebUI. sudo nginx -t 2>/dev/null && sudo nginx -s reload 2>/dev/null exit 0