From 266aa7b4b4c2406fce1b87e9b113b4380461d101 Mon Sep 17 00:00:00 2001 From: kkellerlbl Date: Thu, 10 Dec 2020 14:31:28 -0800 Subject: [PATCH] Add s3-disable-ssl-verify to config template --- deployment/conf/deployment.cfg.templ | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/deployment/conf/deployment.cfg.templ b/deployment/conf/deployment.cfg.templ index 59286ae..bfccc16 100644 --- a/deployment/conf/deployment.cfg.templ +++ b/deployment/conf/deployment.cfg.templ @@ -21,6 +21,7 @@ s3-access-key = {{ default .Env.s3_access_key "" }} s3-access-secret = {{ default .Env.s3_access_secret "" }} s3-region = {{ default .Env.s3_region "us-west-1" }} s3-disable-ssl = {{ default .Env.s3_disable_ssl "false" }} +s3-disable-ssl-verify = {{ default .Env.s3_disable_ssl_verify "false" }} # KBase auth server parameters. # The root url of the auth server. @@ -31,4 +32,4 @@ kbase-auth-admin-roles = {{ default .Env.kbase_auth_admin_roles "KBASE_ADMIN, BL # If "true", make the server ignore the X-Forwarded-For and X-Real-IP headers. Otherwise # (the default behavior), the logged IP address for a request, in order of precedence, is # 1) the first address in X-Forwarded-For, 2) X-Real-IP, and 3) the address of the client. -dont-trust-x-ip-headers = {{ default .Env.dont_trust_x_ip_headers "false" }} \ No newline at end of file +dont-trust-x-ip-headers = {{ default .Env.dont_trust_x_ip_headers "false" }}