From 74e96ad1795fdf9dda75fc3865161a0d4ab1f39d Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Fri, 10 Apr 2020 08:16:04 +0200 Subject: [PATCH] Use public URLs --- ansible/templates/alerta.conf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ansible/templates/alerta.conf b/ansible/templates/alerta.conf index f394fad..904003c 100644 --- a/ansible/templates/alerta.conf +++ b/ansible/templates/alerta.conf @@ -1,16 +1,16 @@ [DEFAULT] -endpoint = http://localhost:8080/api +endpoint = https://{{ domain }}/api key = {{ alerta_cli_api_key }} output = psql -sslverify = False +sslverify = True timezone = Europe/London [alerta-mailer] amqp_url = {{ db_type }}://{{ db_loc }}/ -dashboard_url = http://localhost:8080 +dashboard_url = https://{{ domain }} debug = True email_type = text -endpoint = http://127.0.0.1:8080/api +endpoint = https://{{ domain }}/api key = {{ alerta_mailer_api_key }} mail_from = {{ mail_from }} mail_to = {{ mail_to }}