mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-10 15:01:05 +01:00
20 lines
354 B
Django/Jinja
20 lines
354 B
Django/Jinja
#default
|
|
server
|
|
{
|
|
server_name {{domain}};
|
|
|
|
{% include 'roles/letsencrypt/templates/ssl_header.j2' %}
|
|
|
|
{% if nginx_matomo_tracking | bool %}
|
|
{% include 'roles/nginx-matomo-tracking/templates/matomo-tracking.conf.j2' %}
|
|
{% endif %}
|
|
|
|
charset utf-8;
|
|
|
|
location /
|
|
{
|
|
root {{nginx_homepage_root}};
|
|
index index.html index.htm;
|
|
}
|
|
}
|