Newer
Older
# {{ ansible_managed }}
server {
listen 80;
listen [::]:80;
{% for location in nginx_http_locations %}
location {{ location.location }} {
{{ location.config | indent(width=4, indentfirst=True) }}
}
{% endfor %}
location ^~ /.well-known {
alias {{ acmetool_webroot }};
}
}