We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
export S3_STORAGE_ENDPOINT_URL=https://s3.amazonaws.com
It's buggy now.
The behavior between keeping S3_STORAGE_ENDPOINT_URL empty and setting S3_STORAGE_ENDPOINT_URL=https://s3.amazonaws.com/ is different.
S3_STORAGE_ENDPOINT_URL
S3_STORAGE_ENDPOINT_URL=https://s3.amazonaws.com/
S3_STORAGE_ENDPOINT_URL=""
format!("s3.{}.amazonaws.com", region)
I'm considering removing the region option so that:
region
https://s3.amazonaws.com/
http://127.0.0.1:9000
Originally posted by @Xuanwo in #54 (comment)
The text was updated successfully, but these errors were encountered:
Implemented in #59
Sorry, something went wrong.
No branches or pull requests
It's buggy now.
The behavior between keeping
S3_STORAGE_ENDPOINT_URL
empty and settingS3_STORAGE_ENDPOINT_URL=https://s3.amazonaws.com/
is different.S3_STORAGE_ENDPOINT_URL=""
: s3 SDK will useformat!("s3.{}.amazonaws.com", region)
to construct the correct endpoint.S3_STORAGE_ENDPOINT_URL=https://s3.amazonaws.com/
: s3 SDK will take this input as static, and can't handle the region correctly.I'm considering removing the
region
option so that:https://s3.amazonaws.com/
and detect the region for users.http://127.0.0.1:9000
Originally posted by @Xuanwo in #54 (comment)
The text was updated successfully, but these errors were encountered: