-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Virtual host address support #92
Comments
BTW mapping the container to the subdomain, like below from a Windows
|
@Piedone I think LocalS3 is able to support virtual host following the HTTP Host header bucket specification. |
At least for me with the .NET SDK it doesn't seem to work (my code otherwise works with real S3 resources, as well as some other emulator). It seems to send the Are you saying that LocalS3 handles the |
LocalS3 will soon support virtual hosting, as your project requires this feature. The implementation will adhere to the HTTP Host header bucket specification and is expected to be published in the next few days. |
Awesome, thank you! |
Version 1.15 supported virtual host address. |
Oh wow, awesome, thank you for being so quick! |
Do I understand correctly that LocalS3 doesn't support virtual-hosted–style buckets? See Virtual hosting of buckets. So,
mybucket.localhost:8080
won't work, onlylocalhost:8080/mybucket
.This is what I noticed: Using the official AWS .NET SDK, I'm string to check the existence of a bucket:
This works with live S3 resources, but not with LocalS3, since it always returns
true
. This is what I see in the LocalS3 logs:From the last line it seems to me that the bucket name actually doesn't reach LocalS3 but it's empty. This is confirmed if I try to add a file to such a bucket, since I get:
Thank you!
The text was updated successfully, but these errors were encountered: