17 lines
721 B
YAML
17 lines
721 B
YAML
# General
|
|
lnbits_dir: /opt/lnbits
|
|
lnbits_data_dir: "{{ lnbits_dir }}/data"
|
|
lnbits_port: 8765
|
|
|
|
# (caddy_sites_dir and subdomain now in services_config.yml)
|
|
|
|
# Remote access
|
|
remote_host_name: "vipy"
|
|
remote_host: "{{ hostvars.get(remote_host_name, {}).get('ansible_host', remote_host_name) }}"
|
|
remote_user: "{{ hostvars.get(remote_host_name, {}).get('ansible_user', 'counterweight') }}"
|
|
remote_key_file: "{{ hostvars.get(remote_host_name, {}).get('ansible_ssh_private_key_file', '') }}"
|
|
remote_port: "{{ hostvars.get(remote_host_name, {}).get('ansible_port', 22) }}"
|
|
|
|
# Local backup
|
|
local_backup_dir: "{{ lookup('env', 'HOME') }}/lnbits-backups"
|
|
backup_script_path: "{{ lookup('env', 'HOME') }}/.local/bin/lnbits_backup.sh"
|