diff options
| author | David Kalnischkies <david@kalnischkies.de> | 2022-04-26 22:22:46 +0200 |
|---|---|---|
| committer | David Kalnischkies <david@kalnischkies.de> | 2024-11-22 12:40:10 +0000 |
| commit | d9601bce6e1fa61cbb3dc4d66e5492f9885eef8f (patch) | |
| tree | 0793055150f1fe7a34c2eed69d97263220bfb3cd /doc/examples/configure-index | |
| parent | eb1e6fc4973a844adbea0297c6425b00f64e8b7b (diff) | |
Allow AutoDetectProxy to work with more than just http(s)
It is a bit unfair for third-party methods wrapping e.g. http to not
have access to such tools, same for our old ftp and e.g. our tor even
if in practice this isn't used much even for http.
At least that is one less FIXME in the code.
Diffstat (limited to 'doc/examples/configure-index')
| -rw-r--r-- | doc/examples/configure-index | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/doc/examples/configure-index b/doc/examples/configure-index index 1b165702d..9623514b8 100644 --- a/doc/examples/configure-index +++ b/doc/examples/configure-index @@ -846,12 +846,18 @@ acquire::gpgv::dl-limit "<INVALID>"; acquire::store::dl-limit "<INVALID>"; acquire::mirror::dl-limit "<INVALID>"; methods::mirror::problemreporting "<STRING>"; -acquire::http::proxyautodetect "<STRING>"; -acquire::http::proxy-auto-detect "<STRING>"; -acquire::http::proxy::* "<STRING>"; -acquire::https::proxyautodetect "<STRING>"; -acquire::https::proxy-auto-detect "<STRING>"; -acquire::https::proxy::* "<STRING>"; +acquire::*::proxyautodetect "<STRING>"; +acquire::file::proxyautodetect "<INVALID>"; +acquire::copy::proxyautodetect "<INVALID>"; +acquire::store::proxyautodetect "<INVALID>"; +acquire::*::proxy-auto-detect "<STRING>"; +acquire::file::proxy-auto-detect "<INVALID>"; +acquire::copy::proxy-auto-detect "<INVALID>"; +acquire::store::proxy-auto-detect "<INVALID>"; +acquire::file::proxy::* "<INVALID>"; +acquire::copy::proxy::* "<INVALID>"; +acquire::store::proxy::* "<INVALID>"; +acquire::*::proxy::* "<STRING>"; // Options used by apt-ftparchive dir::archivedir "<DIR>"; |
