ansible-infra/resources/z9/dooris/nginx/http_handler.conf
June 51bbdd42a2
Some checks failed
/ Ansible Lint (push) Failing after 2m6s
dooris(host): make certbot work
2026-01-13 16:55:22 +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/;
}
}