23 lines
454 B
Plaintext
Raw Permalink Normal View History

2021-01-03 00:29:24 +01:00
server
{
server_name {{domains[application_id]}};
2021-01-03 00:29:24 +01:00
2023-09-02 13:13:28 +02:00
{% include 'roles/letsencrypt/templates/ssl_header.j2' %}
2021-01-03 00:29:24 +01:00
{% include 'roles/nginx-modifier-all/templates/global.includes.conf.j2'%}
charset utf-8;
2021-01-03 00:29:24 +01:00
location /
{
root {{nginx.directories.data.html}};
2021-01-03 00:29:24 +01:00
index index.html index.htm;
}
location /.well-known/ {
alias {{nginx.directories.data.well_known}};
allow all;
default_type "text/plain";
autoindex on;
}
2021-01-03 00:29:24 +01:00
}