ansible-role-zammad/defaults/main.yml

26 lines
1,002 B
YAML

---
opensearch:
apt_key_url: https://artifacts.opensearch.org/publickeys/opensearch.pgp
apt_repo: https://artifacts.opensearch.org/releases/bundle/opensearch/2.x/apt stable main
network_host: 127.0.0.1
http_port: 9200
attachment_max_size: 50
ruby_path: "{{ zammad_user_home }}/.rbenv"
ruby_bin_path: "{{ ruby_path }}/versions/{{ ruby_version }}/bin"
ruby_build_repo: https://github.com/rbenv/ruby-build.git
zammad_database_name: zammad
zammad_database_password: "{{ lookup('password', '/tmp/zammad_database_pwd length=42 chars=ascii_letters,digits') }}"
zammad_database_user: zammad
zammad_database_configuration: "{{ zammad_home }}/config/database.yml"
zammad_env_file: /etc/zammad/zammad.env
zammad_home: /opt/zammad
zammad_log_file: zammad.log
zammad_log_name: zammad
zammad_log_path: /var/log/zammad
zammad_repo: https://github.com/zammad/zammad.git
zammad_user: _zammad
zammad_user_home: /var/lib/zammad
zammad_webserver_configuration: "/etc/nginx/sites-available/{{ zammad_domain }}"