Move vars to defaults

This commit is contained in:
Tobias Reisinger 2025-08-10 23:44:23 +02:00
parent 70578f2a13
commit bf08ae8f81
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
40 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,39 @@
---
umami_db_host: "{{ postgres.host }}"
umami_db_user: "{{ opentofu.postgresql_data.umami.user }}"
umami_db_pass: "{{ opentofu.postgresql_data.umami.pass }}"
umami_db_database: "{{ opentofu.postgresql_data.umami.database }}"
umami_hash_salt: "{{ vault_umami.hash_salt }}"
umami_docker_image: docker.umami.dev/umami-software/umami:postgresql-latest
umami_svc:
domain: "{{ all_services | service_get_domain(role_name) }}"
caddy_extra: |
handle /track-external.js {
header Content-Type text/javascript
respond <<JS
(() => {
const name = 'outbound-link-click';
document.querySelectorAll('a').forEach(a => {
if (a.host !== window.location.host && !a.getAttribute('data-umami-event')) {
a.setAttribute('data-umami-event', name);
a.setAttribute('data-umami-event-url', a.href);
}
});
})();
JS 200
}
port: 3000
umami_env:
DATABASE_URL: postgres://{{ umami_db_user }}:{{ umami_db_pass }}@{{ umami_db_host }}/{{ umami_db_database }}
DATABASE_TYPE: postgresql
FORCE_SSL: 1
HASH_SALT: "{{ umami_hash_salt }}"
CLIENT_IP_HEADER: X-Analytics-IP
umami_compose:
watchtower: update
image: "{{ umami_docker_image }}"