computer-playbook/roles/nginx-docker-reverse-proxy/templates/domain.conf.j2

19 lines
403 B
Plaintext
Raw Normal View History

2020-12-24 14:27:31 +01:00
server
{
server_name {{domain}};
{% if nginx_matomo_tracking_active | default(False) %}
{% include 'roles/nginx-matomo-tracking/templates/matomo-tracking.conf.j2' %}
{% endif %}
2020-12-24 14:27:31 +01:00
{% if client_max_body_size is defined %}
client_max_body_size {{ client_max_body_size }};
{% endif %}
2023-09-02 13:13:28 +02:00
{% include 'roles/letsencrypt/templates/ssl_header.j2' %}
2020-12-24 14:27:31 +01:00
{% include 'proxy_pass.conf.j2' %}
}