ansible-infra/roles/dooris/templates/nginx/http_handler.conf
lilly cf7b7ebbed
Some checks failed
/ build (pull_request) Successful in 29s
/ Ansible Lint (push) Failing after 3m15s
/ Ansible Lint (pull_request) Failing after 3m14s
add dooris role for setup of dooris interaction on the node itself
2026-07-23 19:04:15 +02: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/;
}
}