ansible-infra/roles/dooris/templates/nginx/http_handler.conf
lilly de8daaf56c
Some checks failed
/ build (pull_request) Successful in 28s
/ Ansible Lint (pull_request) Failing after 3m49s
/ cleanup-staging (pull_request) Successful in 6s
/ build (push) Successful in 26s
/ Ansible Lint (push) Failing after 3m35s
add dooris role for setup of dooris interaction on the node itself
2026-07-29 14:16:04 +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/;
}
}