From 775107b36ef16f0d4ce732aeb0d6995fc78835e0 Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Thu, 9 Apr 2020 20:53:58 +0200 Subject: [PATCH] More fooling around the with CLI config --- ansible/templates/alerta.conf | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/ansible/templates/alerta.conf b/ansible/templates/alerta.conf index 40da5fa..a90df23 100644 --- a/ansible/templates/alerta.conf +++ b/ansible/templates/alerta.conf @@ -2,19 +2,20 @@ endpoint = http://127.0.0.1:8080/api key = {{ alerta_cli_api_key }} output = psql -sslverify = no +sslverify = False timezone = Europe/London [alerta-mailer] -amqp_url = mongodb://127.0.0.1:27017/kombu +amqp_url = mongodb://127.0.0.1:27017/ +amqp_queue_name = kombu dashboard_url = http://127.0.0.1:8080 -debug = true +debug = True email_type = text endpoint = http://127.0.0.1:8080/api key = {{ alerta_mailer_api_key }} mail_from = {{ mail_from }} mail_to = {{ mail_to }} -skip_mta = false +skip_mta = False smtp_password = {{ smtp_passwd }} -smtp_use_ssl = true +smtp_starttls = True smtp_username = {{ smtp_username }}