diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2018-12-09T11·59+0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-09T11·59+0100 |
commit | 18ecd087ae772885fb223e1771b93a6b0eee1a31 (patch) | |
tree | d461bc85040bbf540e8023bc1f5c58d18c733fd6 /doc/manual/packages | |
parent | 05f0543a1761357f4790e388ac74c8e284b9bb3e (diff) | |
parent | 77cc632186d6a0bb63c1e16238f628857bc6e7bd (diff) |
Merge pull request #2566 from LnL7/s3-scheme
s3: make scheme configurable
Diffstat (limited to 'doc/manual/packages')
-rw-r--r-- | doc/manual/packages/s3-substituter.xml | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/doc/manual/packages/s3-substituter.xml b/doc/manual/packages/s3-substituter.xml index ea654392c6b1..2ec9687a0c60 100644 --- a/doc/manual/packages/s3-substituter.xml +++ b/doc/manual/packages/s3-substituter.xml @@ -51,6 +51,18 @@ the S3 URL:</para> addressing.</para></note> </listitem> </varlistentry> + + <varlistentry><term><literal>scheme</literal></term> + <listitem> + <para> + The scheme used for S3 requests, <literal>https</literal> + (default) or <literal>http</literal>. This option allows you to + disable HTTPS for binary caches which don't support it. + </para> + <note><para>HTTPS should be used if the cache might contain + sensitive information.</para></note> + </listitem> + </varlistentry> </variablelist> <para>In this example we will use the bucket named @@ -165,7 +177,7 @@ the S3 URL:</para> </example> <example><title>Uploading to an S3-Compatible Binary Cache</title> - <para><command>nix copy --to 's3://example-nix-cache?profile=cache-upload&endpoint=minio.example.com' nixpkgs.hello</command></para> + <para><command>nix copy --to 's3://example-nix-cache?profile=cache-upload&scheme=https&endpoint=minio.example.com' nixpkgs.hello</command></para> </example> </section> </section> |