More fiddling with configs
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Luke Murphy 2020-04-10 09:22:24 +02:00
parent c2a717444b
commit 63b487a77a
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
3 changed files with 5 additions and 9 deletions

View File

@ -1,14 +1,14 @@
[DEFAULT] [DEFAULT]
endpoint = https://{{ domain }}/api endpoint = http://localhost:8080/api
output = psql output = psql
sslverify = True sslverify = False
timezone = Europe/London timezone = Europe/London
[alerta-mailer] [alerta-mailer]
amqp_url = "{{ db_type }}://{{ db_user }}:{{ db_passwd }}@{{ db_loc }}" amqp_url = "{{ db_type }}://{{ db_user }}:{{ db_passwd }}@{{ db_loc }}"
debug = True debug = True
email_type = text email_type = text
endpoint = https://{{ domain }} endpoint = http://localhost:8080
key = {{ alerta_mailer_api_key }} key = {{ alerta_mailer_api_key }}
mail_from = {{ mail_from }} mail_from = {{ mail_from }}
mail_to = {{ mail_to }} mail_to = {{ mail_to }}

View File

@ -11,11 +11,7 @@ ALLOWED_ENVIRONMENTS = [
BASE_URL = "/api" BASE_URL = "/api"
USE_PROXYFIX = True USE_PROXYFIX = True
# Note(decentral1se): on initial deployment, this must be set to False but on AUTH_REQUIRED = True
# subsequent deployments, we can then turn it to True once the Keycloak
# integration has been configured and API keys have been setup
AUTH_REQUIRED = False
AUTH_PROVIDER = "keycloak" AUTH_PROVIDER = "keycloak"
ADMIN_USERS = [ ADMIN_USERS = [

View File

@ -1 +1 @@
{ "endpoint": "https://{{ domain }}" } { "endpoint": "http://localhost:8080" }