mirror of
https://github.com/fog/fog-aws.git
synced 2022-11-09 13:50:52 -05:00
Add support for cname buckets
This commit is contained in:
parent
cba35fb5be
commit
ba6a4cb454
1 changed files with 18 additions and 14 deletions
|
@ -256,21 +256,25 @@ module Fog
|
|||
if params[:bucket_name]
|
||||
bucket_name = params[:bucket_name]
|
||||
|
||||
path_style = params.fetch(:path_style, @path_style)
|
||||
if !path_style
|
||||
if COMPLIANT_BUCKET_NAMES !~ bucket_name
|
||||
Fog::Logger.warning("fog: the specified s3 bucket name(#{bucket_name}) is not a valid dns name, which will negatively impact performance. For details see: http://docs.amazonwebservices.com/AmazonS3/latest/dev/BucketRestrictions.html")
|
||||
path_style = true
|
||||
elsif scheme == 'https' && !path_style && bucket_name =~ /\./
|
||||
Fog::Logger.warning("fog: the specified s3 bucket name(#{bucket_name}) contains a '.' so is not accessible over https as a virtual hosted bucket, which will negatively impact performance. For details see: http://docs.amazonwebservices.com/AmazonS3/latest/dev/BucketRestrictions.html")
|
||||
path_style = true
|
||||
end
|
||||
end
|
||||
|
||||
if path_style
|
||||
path = bucket_to_path bucket_name, path
|
||||
if params[:bucket_cname]
|
||||
host = bucket_name
|
||||
else
|
||||
host = [bucket_name, host].join('.')
|
||||
path_style = params.fetch(:path_style, @path_style)
|
||||
if !path_style
|
||||
if COMPLIANT_BUCKET_NAMES !~ bucket_name
|
||||
Fog::Logger.warning("fog: the specified s3 bucket name(#{bucket_name}) is not a valid dns name, which will negatively impact performance. For details see: http://docs.amazonwebservices.com/AmazonS3/latest/dev/BucketRestrictions.html")
|
||||
path_style = true
|
||||
elsif scheme == 'https' && !path_style && bucket_name =~ /\./
|
||||
Fog::Logger.warning("fog: the specified s3 bucket name(#{bucket_name}) contains a '.' so is not accessible over https as a virtual hosted bucket, which will negatively impact performance. For details see: http://docs.amazonwebservices.com/AmazonS3/latest/dev/BucketRestrictions.html")
|
||||
path_style = true
|
||||
end
|
||||
end
|
||||
|
||||
if path_style
|
||||
path = bucket_to_path bucket_name, path
|
||||
else
|
||||
host = [bucket_name, host].join('.')
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue