Use SSL setting based on url protocol

This commit is contained in:
Simon Detheridge 2019-12-09 17:41:20 +00:00
parent 48aa141591
commit 6f326d5650

View file

@ -43,8 +43,9 @@ getS3Options = (credentials) ->
secretAccessKey: credentials.auth_secret
if settings.filestore.s3.endpoint
endpoint = URL.parse(settings.filestore.s3.endpoint)
options.endpoint = settings.filestore.s3.endpoint
options.sslEnabled = false
options.sslEnabled = endpoint.protocol == 'https'
return options