mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-05-04 19:22:32 +08:00
The database log is really big even on info level, let' set it manually to warning to save space and don't generate GB of logs. Signed-off-by: Michal Konecny <mkonecny@redhat.com>
43 lines
1.2 KiB
YAML
43 lines
1.2 KiB
YAML
---
|
|
# Mailman core settings
|
|
mailman_webui_basedir: /srv/webui
|
|
mailman_webui_confdir: /etc/mailman3
|
|
mailman_rest_api_username: restadmin
|
|
mailman_rest_api_password: changeme
|
|
mailman_rest_api_workers: 2
|
|
mailman_log_directory: /var/log/mailman3
|
|
mailman_log_level: info
|
|
mailman_log_items:
|
|
- archiver
|
|
- bounce
|
|
- config
|
|
- http
|
|
- runner
|
|
- smtp
|
|
- subscribe
|
|
- task
|
|
- gunicorn
|
|
mailman_smtp_port: 25
|
|
mailman_debug: false
|
|
|
|
# Mailman DB settings (the values should be provided by playbook)
|
|
mailman_db_server: localhost
|
|
mailman_mailman_db_pass: changeme
|
|
|
|
# Hyperkitty/Postorius settings (the values should be provided by playbook)
|
|
mailman_hyperkitty_debug: false
|
|
mailman_hyperkitty_admin_db_pass: changeme
|
|
mailman_hyperkitty_db_pass: changeme
|
|
mailman_hyperkitty_cookie_key: changeme
|
|
mailman_hyperkitty_archiver_key: changeme
|
|
mailman_gunicorn_workers: "{{num_cpus * 2 + 1}}"
|
|
mailman_domains:
|
|
- lists.example.com
|
|
- lists.example.org
|
|
mailman_social_login: []
|
|
|
|
# OpenID-connect settings
|
|
# Attention that you should ensure that callback/redirect_url set at the provider side will end with /
|
|
# see https://docs.allauth.org/en/latest/socialaccount/providers/openid_connect.html#openid-connect
|
|
mailman_openidc_server_url: https://id.fedoraproject.org/
|