ansible-nas/roles/znc/defaults/main.yml

31 lines
498 B
YAML
Raw Normal View History

2021-02-07 23:38:10 +00:00
---
# enable or disable the application
znc_enabled: false
znc_available_externally: false
2021-02-07 23:38:10 +00:00
# directories
znc_data_directory: "{{ docker_home }}/znc"
# uid / gid
znc_user_id: "0"
znc_group_id: "0"
# network
znc_hostname: "znc"
znc_port: "6677"
2023-03-10 21:00:37 +00:00
# docker
znc_container_name: "znc"
znc_image_name: "znc"
znc_image_version: "latest"
2021-02-07 23:38:10 +00:00
# specs
znc_memory: "1g"
2023-03-10 21:00:37 +00:00
# znc
znc_user_password: "password"
znc_user_nick: "user"
znc_user_altnick: "user_"
znc_user_ident: "user"
znc_user_real_name: "User Name"