diff options
author | Quentin <quentin@deuxfleurs.fr> | 2020-11-06 14:23:56 +0100 |
---|---|---|
committer | Quentin <quentin@deuxfleurs.fr> | 2020-11-06 17:52:53 +0100 |
commit | 57c6e1c877799aa66efa4882322732aada3070b3 (patch) | |
tree | bed6846f39c1287cb61d5eb84faabe7a3de84eb1 /README.md | |
parent | 5faf069e3373ebec148a8e81e31b696f0fe746a1 (diff) | |
download | garage-57c6e1c877799aa66efa4882322732aada3070b3.tar.gz garage-57c6e1c877799aa66efa4882322732aada3070b3.zip |
Fix README + create dev config file
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -67,7 +67,10 @@ node_key = "/path/to/garage/pki/garage.key" [s3_api] api_bind_addr = "[::1]:3900" # the S3 API port, HTTP without TLS. Add a reverse proxy for the TLS part. -region = "garage" # set this to anything. S3 API calls will fail if they are not made against the region set here. +s3_region = "garage" # set this to anything. S3 API calls will fail if they are not made against the region set here. + +[s3_web] +web_bind_addr = "[::1]:3902" ``` Build Garage using `cargo build --release`. |