diff options
author | Matthew Fennell <matthew@fennell.dev> | 2025-07-05 23:25:30 +0100 |
---|---|---|
committer | Matthew Fennell <matthew@fennell.dev> | 2025-07-05 23:25:30 +0100 |
commit | d09a7528fb463160e21e17d7169e0f9773675668 (patch) | |
tree | 3923dba5fe755de7a7ef86154083554c0ba45a3b | |
parent | 63e1ec966b098a805c89bbf959af80fa52c8e19c (diff) |
Manage certificates on localhost
I used to have a dedicated server for cert renewals; now I just run it
from my laptop, with an increased cron frequency. This is simpler,
especially when there is a powercut, and I'll certainly use my laptop
every 30 days.
-rw-r--r-- | playbook.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/playbook.yaml b/playbook.yaml index ac4b2c1..467b1fa 100644 --- a/playbook.yaml +++ b/playbook.yaml @@ -59,7 +59,7 @@ -binary | hexdump -ve '/1 "%02x"' register: dane_hash changed_when: false - delegate_to: "{{ cert_host }}" + delegate_to: localhost # We allow status code 400 here as this is returned by deSEC if the domain # already exists. Ideally, we should filter out genuinely good/bad requests |