ansible-role-zammad/defaults/main.yml
2021-11-27 20:30:23 +01:00

30 lines
1.1 KiB
YAML

---
cron_file: /etc/cron.d/zammad
debian_version: bullseye
es_version: 7.10.2
es_url: "https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-oss-{{ es_version }}-amd64.deb"
es_dl_path: /data
es_ingest_attachment_version: 7.10.2
es_ingest_attachment_url: "https://artifacts.elastic.co/downloads/elasticsearch-plugins/ingest-attachment/ingest-attachment-{{ es_ingest_attachment_version }}.zip"
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_home: /opt/zammad
zammad_host: support.sao
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: "/home/{{ zammad_user }}"
zammad_webserver_configuration: "/etc/nginx/sites-available/{{ zammad_domain }}"