Skip to content

Commit

Permalink
Fix S3 setting name in example
Browse files Browse the repository at this point in the history
S3 configuration expects `endpoint_url`, not `endpoint`
  • Loading branch information
dmitry-mukhin authored Feb 27, 2023
1 parent 4e42841 commit 52fe94f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config.toml.example
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ path = "test"
# To configure for a S3 provider, set key and secret in environment variables `AWS_ACCESS_KEY_ID` and `AWS_SECRET_ACCESS_KEY`, respectively;
# then fillout the API endpoint, region, and bucket below.
[storage.s3]
endpoint = "https://s3.us-west-2.amazonaws.com"
endpoint_url = "https://s3.us-west-2.amazonaws.com"
region = "us-west-2"
bucket = "example-bucket-name"

Expand Down

0 comments on commit 52fe94f

Please sign in to comment.