mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-10 15:01:05 +01:00
19 lines
403 B
Django/Jinja
19 lines
403 B
Django/Jinja
server
|
|
{
|
|
server_name {{domain}};
|
|
|
|
{% if nginx_matomo_tracking_active | default(False) %}
|
|
{% include 'roles/nginx-matomo-tracking/templates/matomo-tracking.conf.j2' %}
|
|
{% endif %}
|
|
|
|
|
|
{% if client_max_body_size is defined %}
|
|
client_max_body_size {{ client_max_body_size }};
|
|
{% endif %}
|
|
|
|
{% include 'roles/letsencrypt/templates/ssl_header.j2' %}
|
|
|
|
{% include 'proxy_pass.conf.j2' %}
|
|
|
|
}
|