This repository has been archived on 2020-10-27. You can view files and clone it, but cannot push or open issues or pull requests.
alerta.autonomic.zone/ansible/templates/alerta.conf

26 lines
659 B
Plaintext
Raw Normal View History

2020-04-09 17:06:09 +00:00
[DEFAULT]
2020-04-10 07:46:08 +00:00
debug = True
2020-04-10 07:22:24 +00:00
endpoint = http://localhost:8080/api
2020-04-10 07:46:08 +00:00
key = {{ alerta_cli_api_key }}
2020-04-10 08:47:00 +00:00
output = json
2020-04-10 07:22:24 +00:00
sslverify = False
2020-04-09 17:06:09 +00:00
timezone = Europe/London
[alerta-mailer]
2020-04-10 08:40:46 +00:00
amqp_topic = notify
2020-04-10 09:50:43 +00:00
amqp_url = {{ db_type }}://{{ db_user }}:{{ db_passwd }}@{{ db_loc }}/alerta
2020-04-10 08:24:50 +00:00
config_file = /app/alerta.conf
dashboard_url = https://{{ domain }}
debug = True
2020-04-09 18:27:36 +00:00
email_type = text
2020-04-10 08:31:57 +00:00
endpoint = http://localhost:8080/api
2020-04-09 17:20:11 +00:00
key = {{ alerta_mailer_api_key }}
mail_from = {{ mail_from }}
2020-04-10 10:34:20 +00:00
mail_template = /app/email.tmpl
2020-04-09 18:27:36 +00:00
mail_to = {{ mail_to }}
skip_mta = False
2020-04-10 08:03:23 +00:00
smtp_host = {{ smtp_host }}
2020-04-09 17:20:11 +00:00
smtp_password = {{ smtp_passwd }}
2020-04-10 08:03:23 +00:00
smtp_port = {{ smtp_port }}
2020-04-10 09:25:16 +00:00
smtp_starttls = {{ smtp_starttls }}