Different little optimations

This commit is contained in:
2025-07-17 04:23:05 +02:00
parent 1bdfb71f2f
commit bfc42ce2ac
13 changed files with 22 additions and 21 deletions

View File

@@ -37,8 +37,3 @@
token_auth: "{{ matomo_auth_token }}"
return_content: yes
status_code: 200
- name: run the docker matomo tasks once
set_fact:
run_once_web_app_matomo: true
when: run_once_web_app_matomo is not defined

View File

@@ -3,3 +3,7 @@
include_tasks: constructor.yml
when: run_once_web_app_matomo is not defined
- name: run the docker matomo tasks once
set_fact:
run_once_web_app_matomo: true
when: run_once_web_app_matomo is not defined

View File

@@ -1,8 +1,8 @@
# Environment File for Matomo
# @see https://hub.docker.com/_/matomo/
MATOMO_DATABASE_HOST= "{{database_host}}:{{database_port}}"
MATOMO_DATABASE_HOST= "{{ database_host }}:{{ database_port }}"
MATOMO_DATABASE_ADAPTER= "mysql"
MATOMO_DATABASE_USERNAME= "{{database_username}}"
MATOMO_DATABASE_PASSWORD= "{{database_password}}"
MATOMO_DATABASE_DBNAME= "{{database_name}}"
MATOMO_DATABASE_USERNAME= "{{ database_username }}"
MATOMO_DATABASE_PASSWORD= "{{ database_password }}"
MATOMO_DATABASE_DBNAME= "{{ database_name }}"