You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.5 KiB
YAML
53 lines
1.5 KiB
YAML
---
|
|
|
|
TIMEZONE: "Europe/Berlin"
|
|
|
|
ansible_user: zocker
|
|
|
|
ansible_become: yes
|
|
ansible_become_pass: "{{ zocker_password }}"
|
|
|
|
update_scripts_directory: "/root/update"
|
|
|
|
backups_directory: "/backups"
|
|
backups_databases_directory: "{{ backups_directory }}/databases"
|
|
backups_files_directory: "{{ backups_directory }}/files"
|
|
|
|
global_local_user: "{{ lookup('env', 'USER') }}"
|
|
|
|
global_helper_directory: "/ansible/helpers"
|
|
global_webservers_directory: "/var/webservers"
|
|
global_socket_directory: "/var/run"
|
|
|
|
global_credentials_directory: "credentials"
|
|
global_public_key_directory: "public_keys"
|
|
global_ssh_key_directory: "{{ global_public_key_directory }}/ssh"
|
|
global_ssh_host_key_directory: "{{ global_ssh_key_directory }}/hosts"
|
|
|
|
global_wireguard_private_directory: "{{ global_credentials_directory }}/wireguard"
|
|
global_wireguard_public_directory: "{{ global_public_key_directory }}/wireguard"
|
|
|
|
ssh_host_key_types:
|
|
- ecdsa
|
|
- ed25519
|
|
- rsa
|
|
|
|
# (Backend) Port Mappings
|
|
|
|
backend_smtp_port: 12891
|
|
backend_imap_port: 12892
|
|
|
|
# Application configurations
|
|
|
|
global_apt_sources_directory: "/etc/apt/sources.list.d"
|
|
|
|
global_ssh_configuration_directory: "/etc/ssh/"
|
|
global_ssh_configuration_environment_directory: "/ansible/ssh_configuration"
|
|
global_ssh_configuration_link_name: "config"
|
|
global_ssh_configuration_link: "{{ global_ssh_configuration_environment_directory }}/{{ global_ssh_configuration_link_name }}"
|
|
|
|
global_systemd_configuration_directory: "/etc/systemd/system"
|
|
|
|
# Debian Repository Mirror
|
|
debian_repository_mirror: "http://deb.debian.org/debian/"
|