From 4207bb82ff6b86e8298a369546d891354ce6b4fd Mon Sep 17 00:00:00 2001 From: gilbertchen Date: Mon, 14 May 2018 13:39:16 -0400 Subject: [PATCH] Updated Storage Backends (markdown) --- Storage-Backends.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/Storage-Backends.md b/Storage-Backends.md index 8a4836f..c7c178b 100644 --- a/Storage-Backends.md +++ b/Storage-Backends.md @@ -175,3 +175,36 @@ To use Hubic as the storage, you first need to download a token file from https: Hubic offers the most free space (25GB) of all major cloud providers and there is no bandwidth charge (same as Google Drive and OneDrive), so it may be worth a try. + +
OpenStack Swift + +``` +Storage URL: swift://user@auth_url/container/path +``` + +If the storage requires more parameters you can specify them in the query string: + +``` +swift://user@auth_url/container/path?tenant=&domain= +``` + +The following is the list of parameters accepted by the query string: + +* domain +* domain_id +* user_id +* retries +* user_agent +* timeout +* connection_timeout +* region +* tenant +* tenant_id +* endpiont_type +* tenant_domain +* tenant_domain_id +* trust_id + +This backend is implemented using https://github.com/ncw/swift. + +
\ No newline at end of file