16 lines
490 B
YAML
16 lines
490 B
YAML
# General
|
|
memos_data_dir: /var/lib/memos
|
|
memos_port: 5230
|
|
|
|
# (caddy_sites_dir and subdomain now in services_config.yml)
|
|
|
|
# Remote access
|
|
remote_host: "{{ groups['memos_box'][0] }}"
|
|
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') }}/memos-backups"
|
|
backup_script_path: "{{ lookup('env', 'HOME') }}/.local/bin/memos_backup.sh"
|
|
|
|
|