Implemented Global CSS draft

This commit is contained in:
2025-02-07 13:39:46 +01:00
parent 44438dab64
commit 9efca268c9
43 changed files with 327 additions and 68 deletions

View File

@@ -9,7 +9,7 @@
name: nginx-mod-headers-more
state: present
notify: restart nginx
when: run_once_nginx is not defined and nginx_matomo_tracking | bool
when: run_once_nginx is not defined and global_matomo_tracking_enabled | bool
- name: "Delete {{nginx.directories.configuration}} directory, when mode_reset"
file:
@@ -33,8 +33,8 @@
notify: restart nginx
when: run_once_nginx is not defined
- name: "include task certbot-matomo.yml"
include_tasks: certbot-matomo.yml
- name: "include task certbot-and-globals.yml"
include_tasks: certbot-and-globals.yml
vars:
domain: "{{primary_domain}}"
when: run_once_nginx is not defined

View File

@@ -1,4 +1,4 @@
{% if nginx_matomo_tracking | bool %}
{% if global_matomo_tracking_enabled | bool %}
load_module /usr/lib/nginx/modules/ngx_http_headers_more_filter_module.so;
{% endif %}