You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As mentioned in the email thread, using . in bucket names is not suggested. From the AWS documentation:
If you include dots in a bucket's name, you can't use virtual-host-style addressing over HTTPS, unless you perform your own certificate validation. This is because the security certificates used for virtual hosting of buckets don't work for buckets with dots in their names.
Judging by the screen capture in this issue, we are using virtual-host-style addressing over https, which is why we are getting a certificate error. We could technically use buckets with . in their names if we used path-style requests, but path-style requests are being deprecated.
It looks like we basically need to not use . in bucket names.
@tvannoy I agree the best practice is to no use . in bucket names. I think we should update our documentation to specify that we don't support . and have the web app provide an error message if it detects . in the bucket name.
fe-wickham
changed the title
Web App doesn't parse '.' in the bucket name
Check for '.' in the bucket name and produce an error message if needed
Jan 5, 2021
The web app is not able to parse
.
in the bucket name correctly, even though this is a valid S3 bucket nameThe text was updated successfully, but these errors were encountered: