ansible-infra/resources/z9/light/nginx/http_handler.conf
chris 6a92aa68c1
Some checks failed
/ Ansible Lint (push) Failing after 39s
light: fix tls cert expiring and not renewing
2026-01-25 22:36:30 +01:00

12 lines
268 B
Text

server {
listen 80 default_server;
listen [::]:80 default_server;
location / {
return 301 https://$host$request_uri;
}
location /.well-known/acme-challenge/ {
proxy_pass http://127.0.0.1:31820/.well-known/acme-challenge/;
}
}