Update s3 library

This commit is contained in:
Alexander Neumann 2016-01-03 21:50:59 +01:00
parent 61e66e936f
commit 181480b68b
3 changed files with 16 additions and 3 deletions

View file

@ -102,7 +102,7 @@ func (c Client) makeBucketRequest(bucketName string, acl BucketACL, location str
// If endpoint supports virtual host style use that always.
// Currently only S3 and Google Cloud Storage would support this.
if isVirtualHostSupported(c.endpointURL) {
targetURL.Host = bucketName + "/" + c.endpointURL.Host
targetURL.Host = bucketName + "." + c.endpointURL.Host
targetURL.Path = "/"
} else {
// If not fall back to using path style.