diff options
author | Julian Andres Klode <jak@debian.org> | 2021-10-18 13:37:47 +0000 |
---|---|---|
committer | Julian Andres Klode <jak@debian.org> | 2021-10-18 13:37:47 +0000 |
commit | efa3528de4277a3d5195c5ce875e7ee960726239 (patch) | |
tree | 259ded536c8f6359c4c4bf629ba8e310f17f799a /doc | |
parent | 76bd0ab589f5a577bd6127bf6487fd351de5b32a (diff) | |
parent | 1edf8551cef0a7db7fdcdd5d6b06aec2ea7bb70d (diff) |
Merge branch 'pu/ifrange' into 'main'
Add AllowRange option to disable HTTP Range usage
See merge request apt-team/apt!188
Diffstat (limited to 'doc')
-rw-r--r-- | doc/examples/configure-index | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/examples/configure-index b/doc/examples/configure-index index f3f7f5ebc..f05981045 100644 --- a/doc/examples/configure-index +++ b/doc/examples/configure-index @@ -282,7 +282,8 @@ Acquire Timeout "30"; ConnectionAttemptDelayMsec "250"; Pipeline-Depth "5"; - AllowRedirect "true"; + AllowRanges "<BOOL>"; + AllowRedirect "<BOOL>"; // Cache Control. Note these do not work with Squid 2.0.2 No-Cache "false"; @@ -305,11 +306,11 @@ Acquire SslCert "/etc/apt/some.pem"; CaPath "/etc/ssl/certs"; Verify-Host "true"; - AllowRedirect "true"; + AllowRanges "<BOOL>"; + AllowRedirect "<BOOL>"; Timeout "30"; ConnectionAttemptDelayMsec "250"; - AllowRedirect "true"; // Cache Control. Note these do not work with Squid 2.0.2 No-Cache "false"; |