feat: nginx certbot

This commit is contained in:
Clément Désiles
2026-05-29 21:26:17 +02:00
parent 1d00432061
commit aea450dc9d
2 changed files with 92 additions and 0 deletions
@@ -0,0 +1,15 @@
# Temporary HTTP-only vhost for ACME certificate provisioning
# Managed by Ansible - automatically removed after certificate issuance
server {
listen 80;
server_name {{ certbot_hostname }};
location /.well-known/acme-challenge/ {
root /var/www/certbot;
}
location / {
return 503;
}
}