mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-02-23 12:51:54 +01:00
24 lines
440 B
Django/Jinja
24 lines
440 B
Django/Jinja
#default
|
|
server
|
|
{
|
|
server_name {{domain}};
|
|
|
|
{% include 'roles/letsencrypt/templates/ssl_header.j2' %}
|
|
|
|
{% include 'roles/nginx-modifier-all/templates/global.includes.conf.j2'%}
|
|
charset utf-8;
|
|
|
|
location /
|
|
{
|
|
root {{nginx.directories.homepage}};
|
|
index index.html index.htm;
|
|
}
|
|
|
|
location /.well-known/ {
|
|
alias {{nginx.directories.well_known}};
|
|
allow all;
|
|
default_type "text/plain";
|
|
autoindex on;
|
|
}
|
|
}
|