Remove forcing old path-style URLs with s3. Closes #497

This commit is contained in:
Gabe Kangas 2020-12-31 11:50:18 -08:00
parent b70cee8afd
commit b2953028cf

View File

@ -173,10 +173,9 @@ func (s *S3Storage) connectAWS() *session.Session {
sess, err := session.NewSession(
&aws.Config{
Region: aws.String(s.s3Region),
Credentials: creds,
Endpoint: aws.String(s.s3Endpoint),
S3ForcePathStyle: aws.Bool(true),
Region: aws.String(s.s3Region),
Credentials: creds,
Endpoint: aws.String(s.s3Endpoint),
},
)