Fix URLs and password parsing once and for all
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Luke Murphy 2021-01-11 13:35:23 +01:00
parent a0ca065a58
commit 760473d601
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 4 additions and 4 deletions

View File

@ -13,14 +13,14 @@ config_file = /app/alerta.conf
dashboard_url = https://{{ env "DOMAIN" }}
debug = {{ env "DEBUG" }}
email_type = text
endpoint = http://web:8080
key = "{{ secret "mailer_api_key" }}"
endpoint = http://web:8080/api
key = {{ secret "mailer_api_key" }}
mail_from = {{ env "MAIL_FROM" }}
mail_template = /app/email.tmpl
mail_to = {{ env "MAIL_TO" }}
skip_mta = False
smtp_host = {{ env "SMTP_HOST" }}
smtp_username = {{ env "MAIL_FROM" }}
smtp_password = "{{ secret "smtp_password" }}"
smtp_password = {{ secret "smtp_password" }}
smtp_port = {{ env "SMTP_PORT" }}
smtp_starttls = {{ env "SMTP_STARTTLS" }}
smtp_username = {{ env "MAIL_FROM" }}