diff options
author | Daiderd Jordan <daiderd@gmail.com> | 2018-12-07 23:38:24 +0100 |
---|---|---|
committer | Daiderd Jordan <daiderd@gmail.com> | 2018-12-07 23:55:38 +0100 |
commit | 898823b67d4d9ceeaebf166957141706eb03ad72 (patch) | |
tree | 6631268c1cd4e5717fa82240e664bc1c0dd6d833 /src/libstore/download.cc | |
parent | 05f0543a1761357f4790e388ac74c8e284b9bb3e (diff) |
s3: make scheme configurable
This enables using for http for S3 request for debugging or
implementations that don't have https configured. This is not a problem
for binary caches since they should not contain sensitive information.
Both package signatures and AWS auth already protect against tampering.
Diffstat (limited to 'src/libstore/download.cc')
-rw-r--r-- | src/libstore/download.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/download.cc b/src/libstore/download.cc index 7773d9032..fef2cf7a3 100644 --- a/src/libstore/download.cc +++ b/src/libstore/download.cc @@ -622,7 +622,7 @@ struct CurlDownloader : public Downloader // FIXME: do this on a worker thread try { #ifdef ENABLE_S3 - S3Helper s3Helper("", Aws::Region::US_EAST_1, ""); // FIXME: make configurable + S3Helper s3Helper("", Aws::Region::US_EAST_1, "", ""); // FIXME: make configurable auto slash = request.uri.find('/', 5); if (slash == std::string::npos) throw nix::Error("bad S3 URI '%s'", request.uri); |