Solved more matomo bugs

This commit is contained in:
2025-02-19 03:20:34 +01:00
parent bd1395926b
commit f84774a390
5 changed files with 44 additions and 27 deletions

View File

@@ -6,10 +6,18 @@
include_role:
name: nginx-https-recieve-certificate
- name: "copy nginx domain configuration to {{nginx.directories.http.servers}}{{domain}}.conf"
- name: "Relevant variables for role: {{ role_path | basename }}"
debug:
msg:
oauth2_proxy_active: "{{oauth2_proxy_active}}"
domains: "{{domains}}"
applications: "{{applications}}"
when: enable_debug | bool
- name: "copy nginx domain configuration to {{configuration_destination}}"
template:
src: "roles/nginx-docker-reverse-proxy/templates/domain.conf.j2"
dest: "{{nginx.directories.http.servers}}{{domain}}.conf"
dest: "{{configuration_destination}}"
notify: restart nginx
- name: "include the docker-oauth2-proxy role {{domain}}"

View File

@@ -0,0 +1 @@
configuration_destination: "{{nginx.directories.http.servers}}{{domain}}.conf"