18 lines
823 B
Plaintext
Raw Normal View History

2025-02-19 12:01:36 +01:00
{# Allow multiple sub_filters #}
2025-02-07 13:39:46 +01:00
sub_filter_once off;
sub_filter_types text/html;
{% if global_matomo_tracking_enabled | bool %}
2025-02-19 12:01:36 +01:00
{# Include Global Matomo Tracking #}
{% include 'roles/nginx-modifier-matomo/templates/matomo-tracking.conf.j2' %}
2025-02-07 13:39:46 +01:00
{% endif %}
2025-02-19 13:46:45 +01:00
{% if applications | get_css_enabled(application_id) or global_matomo_tracking_enabled | bool%}
sub_filter '</head>' '{% if global_matomo_tracking_enabled | bool %}{% include 'roles/nginx-modifier-matomo/templates/script.j2' %}{% endif %}{% if applications | get_css_enabled(application_id) %}{% include 'roles/nginx-modifier-css/templates/link.j2' %}{% endif %}</head>';
2025-02-07 17:25:53 +01:00
{% endif %}
2025-02-19 13:46:45 +01:00
{% if applications | get_css_enabled(application_id) %}
2025-02-19 12:01:36 +01:00
{# Include Global CSS Location #}
{% include 'roles/nginx-modifier-css/templates/location.conf.j2' %}
2025-02-07 13:39:46 +01:00
{% endif %}