Added autoflush to mastodon für docker

This commit is contained in:
Kevin Veen-Birkenbach 2025-08-08 08:37:12 +02:00
parent 2715479c95
commit c96f278ac3
No known key found for this signature in database
GPG Key ID: 44D8F11FD62F878E
2 changed files with 15 additions and 12 deletions

View File

@ -8,7 +8,7 @@ features:
port-ui-desktop: false # Didn't work in frame didn't have high priority @todo figure out pcause and solve it port-ui-desktop: false # Didn't work in frame didn't have high priority @todo figure out pcause and solve it
central_database: true central_database: true
oauth2: false oauth2: false
logout: true logout: false # Dependency conflict. It requires CDN and CDN requires matomo
server: server:
csp: csp:
whitelist: whitelist:

View File

@ -1,17 +1,20 @@
--- ---
# General # General
application_id: "web-app-matomo" application_id: "web-app-matomo"
database_type: "mariadb" database_type: "mariadb"
# Matomo # Matomo
matomo_excluded_ips: "{{ applications | get_app_conf(application_id, 'excluded_ips', True) }}" matomo_excluded_ips: "{{ applications | get_app_conf(application_id, 'excluded_ips', True) }}"
matomo_index_php_url: "{{ domains | get_url(application_id, WEB_PROTOCOL) }}/index.php" matomo_index_php_url: "{{ domains | get_url(application_id, WEB_PROTOCOL) }}/index.php"
matomo_auth_token: "{{ applications | get_app_conf(application_id, 'credentials.auth_token', True) }}" matomo_auth_token: "{{ applications | get_app_conf(application_id, 'credentials.auth_token', True) }}"
matomo_version: "{{ applications | get_app_conf(application_id, 'docker.services.matomo.version', True) }}" matomo_version: "{{ applications | get_app_conf(application_id, 'docker.services.matomo.version', True) }}"
matomo_image: "{{ applications | get_app_conf(application_id, 'docker.services.matomo.image', True) }}" matomo_image: "{{ applications | get_app_conf(application_id, 'docker.services.matomo.image', True) }}"
matomo_name: "{{ applications | get_app_conf(application_id, 'docker.services.matomo.name', True) }}" matomo_name: "{{ applications | get_app_conf(application_id, 'docker.services.matomo.name', True) }}"
matomo_data: "{{ applications | get_app_conf(application_id, 'docker.volumes.data', True) }}" matomo_data: "{{ applications | get_app_conf(application_id, 'docker.volumes.data', True) }}"
matomo_config: "/var/www/html/config/config.ini.php" matomo_config: "/var/www/html/config/config.ini.php"
# Docker
docker_compose_flush_handlers: true
# I don't know if this is still necessary # I don't know if this is still necessary
domain: "{{ domains | get_domain(application_id) }}" domain: "{{ domains | get_domain(application_id) }}"