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
Although S3Proxy responds with an included ETag header to multipart uploads, this header isn't seen by the browser because S3Proxy doesn't send Access-Control-Expose-Headers: Etag back with the browser.
If s3proxy.cors-allow-origins contains the origin we're replying to, we should include the Access-Control-Expose-Headers: Etag header as well. Same for if s3proxy.cors-allow-all=true is set.
The text was updated successfully, but these errors were encountered:
However, we could also include a new S3PROXY_CORS_EXPOSED_HEADER (s3proxy.cors-exposed-headers) property and allow the user to pass in the headers they want to access. I personally only care about ETag but I'm not sure if others might want other headers.
Although S3Proxy responds with an included
ETag
header to multipart uploads, this header isn't seen by the browser because S3Proxy doesn't sendAccess-Control-Expose-Headers: Etag
back with the browser.If
s3proxy.cors-allow-origins
contains the origin we're replying to, we should include theAccess-Control-Expose-Headers: Etag
header as well. Same for ifs3proxy.cors-allow-all=true
is set.The text was updated successfully, but these errors were encountered: