mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2026-04-25 05:16:00 +03:00
[GH-ISSUE #34] Add option to use "path style" requests #20
Labels
No labels
bug
bug
dataloss
duplicate
enhancement
feature request
help wanted
invalid
need info
performance
pull-request
question
question
testing
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/s3fs-fuse#20
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Andrew-Dunn on GitHub (May 28, 2014).
Original GitHub issue: https://github.com/s3fs-fuse/s3fs-fuse/issues/34
At the moment s3fs-fuse only supports virtual host style requests with the path prepended to the Host, i.e:
However some S3 compatible APIs do not support this style of request, and instead need the bucket name to be in the path, i.e.
I'm currently working on a patch which would allow this style of request to be used, which would be enabled with a configuration option such as
use_path_style_request.@ggtakec commented on GitHub (Jun 3, 2014):
Merged Andrew pull request, and I will add explanation about this new option into man page.
@ggtakec commented on GitHub (Jun 3, 2014):
Added and merged master branch with explanation about use_path_request_style option.
Thanks, Andrew.
@alebeta90 commented on GitHub (Jul 14, 2015):
Hello, is still possible use the path style? im trying:
s3fs -o use_path_style_request -o host=http://ecs.domain.com bucketname s3/
and i get this error
fuse: unknown option `use_path_style_request'
Thanks for your time!
Alejandro B.
@gaul commented on GitHub (Jul 14, 2015):
@alebeta90 Which version of s3fs do you use? 1.78 and later should include
use_path_request_style.@Andrew-Dunn commented on GitHub (Jul 15, 2015):
Hey @alebeta90, the option name is
use_path_request_style, notuse_path_style_request.