From caaff6b4b2a3032bf2987ead567a419abd7e327d Mon Sep 17 00:00:00 2001 From: gilbertchen Date: Mon, 24 Jul 2017 14:01:10 -0400 Subject: [PATCH] Add doc for minio and s3c --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 020950a..f3f9b62 100644 --- a/README.md +++ b/README.md @@ -168,6 +168,16 @@ Storage URL: s3://amazon.com/bucket/path/to/storage (default region is us-east- You'll need to input an access key and a secret key to access your Amazon S3 storage. +Minio-based S3 compatiable storages are also supported by using the `minio` or `minios` backends: +``` +Storage URL: minio://region@host/bucket/path/to/storage (without TLS) +Storage URL: minios://region@host/bucket/path/to/storage (with TLS) +``` + +There is another backend that works with S3 compatible storage providers that require V2 signing: +``` +Storage URL: s3c://region@host/bucket/path/to/storage +```