From 299837ae365dd21241e78b04654609d551f5ab8c Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Thu, 9 Apr 2020 20:27:36 +0200 Subject: [PATCH] Tune up alerta.conf --- ansible/templates/alerta.conf | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/ansible/templates/alerta.conf b/ansible/templates/alerta.conf index 2591c2e..2b41fda 100644 --- a/ansible/templates/alerta.conf +++ b/ansible/templates/alerta.conf @@ -1,18 +1,18 @@ [DEFAULT] -sslverify = no +endpoint = https://{{ domain }}/api output = psql -endpoint = http://0.0.0.0:8080/api +sslverify = no timezone = Europe/London [alerta-mailer] -key = {{ alerta_mailer_api_key }} -mail_to = {{ mail_to }} -mail_from = {{ mail_from }} amqp_url = mongodb://0.0.0.0:27017/ -dashboard_url = http://0.0.0.0:8000 -smtp_username = {{ smtp_username }} -smtp_password = {{ smtp_passwd }} -smtp_use_ssl = False -debug = True -skip_mta = False +dashboard_url = http://{{ domain }} +debug = true email_type = text +key = {{ alerta_mailer_api_key }} +mail_from = {{ mail_from }} +mail_to = {{ mail_to }} +skip_mta = false +smtp_password = {{ smtp_passwd }} +smtp_use_ssl = true +smtp_username = {{ smtp_username }}