personal_infra/ansible/services/uptime_kuma/uptime_kuma_vars.yml

16 lines
561 B
YAML
Raw Normal View History

2025-07-02 17:17:56 +02:00
# General
uptime_kuma_dir: /opt/uptime-kuma
uptime_kuma_data_dir: "{{ uptime_kuma_dir }}/data"
uptime_kuma_port: 3001
2025-11-06 23:09:44 +01:00
# (caddy_sites_dir and subdomain now in services_config.yml)
2025-07-02 17:17:56 +02:00
# Remote access
2025-07-21 09:39:36 +02:00
remote_host: "{{ groups['watchtower'][0] }}"
2025-07-02 17:17:56 +02:00
remote_user: "{{ hostvars[remote_host]['ansible_user'] }}"
remote_key_file: "{{ hostvars[remote_host]['ansible_ssh_private_key_file'] | default('') }}"
# Local backup
local_backup_dir: "{{ lookup('env', 'HOME') }}/uptime-kuma-backups"
backup_script_path: "{{ lookup('env', 'HOME') }}/.local/bin/uptime_kuma_backup.sh"