This repository has been archived on 2021-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
alerta/alerta.conf.tmpl

27 lines
748 B
Cheetah
Raw Normal View History

2021-01-08 11:32:51 +00:00
[DEFAULT]
debug = {{ env "DEBUG" }}
2021-01-11 10:13:19 +00:00
endpoint = http://web:8080/api
2021-01-08 12:44:58 +00:00
key = {{ secret "cli_api_key" }}
2021-01-08 11:32:51 +00:00
output = json
sslverify = False
timezone = Europe/London
[alerta-mailer]
amqp_topic = notify
amqp_url = "mongodb://{{ env "DB_HOST" }}/{{ env "DB_NAME" }}"
2021-01-08 11:32:51 +00:00
config_file = /app/alerta.conf
dashboard_url = https://{{ env "DOMAIN" }}
debug = {{ env "DEBUG" }}
email_type = text
2021-01-11 12:22:56 +00:00
endpoint = http://web:8080
2021-01-11 11:29:11 +00:00
key = "{{ secret "mailer_api_key" }}"
2021-01-08 11:32:51 +00:00
mail_from = {{ env "MAIL_FROM" }}
mail_template = /app/email.tmpl
mail_to = {{ env "MAIL_TO" }}
skip_mta = False
smtp_host = {{ env "SMTP_HOST" }}
2021-01-11 10:25:21 +00:00
smtp_username = {{ env "MAIL_FROM" }}
2021-01-11 11:29:11 +00:00
smtp_password = "{{ secret "smtp_password" }}"
2021-01-08 11:32:51 +00:00
smtp_port = {{ env "SMTP_PORT" }}
smtp_starttls = {{ env "SMTP_STARTTLS" }}