summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorнаб <nabijaczleweli@nabijaczleweli.xyz>2026-05-13 21:35:36 +0200
committerнаб <nabijaczleweli@nabijaczleweli.xyz>2026-05-20 23:22:19 +0200
commit080f2c092795382fe77591f8a41e19172ebead26 (patch)
tree53b420a0cd199e1e2cef77ca7cf1476b3200b71e
parentcae6d486b4294a0ba0a4694171380737c3818aac (diff)
apt-transport-https(1): document host-specific SSLCert, SSLKey, Verify-Host with host:: instead of ::host
Empirically, SSLCert and SSLKey need to be specified in the reverse order, and only Acquire::https::deb.beaverlabs.net { SSLCert ".../cert.pem"; SSLKey ".../pkey.pem"; }; , not the documented order, works Sponsored-by: https://beaverlabs.net
-rw-r--r--doc/apt-transport-https.1.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/apt-transport-https.1.xml b/doc/apt-transport-https.1.xml
index 7be546c3a..0f06e719d 100644
--- a/doc/apt-transport-https.1.xml
+++ b/doc/apt-transport-https.1.xml
@@ -115,9 +115,9 @@ Acquire::https {
CAInfo "/path/to/ca/certs.pem";
CRLFile "/path/to/all/crl.pem";
Verify-Peer "true";
- Verify-Host::broken.example.org "false";
- SSLCert::example.org "/path/to/client/cert.pem";
- SSLKey::example.org "/path/to/client/key.pem"
+ broken.example.org::Verify-Host "false";
+ example.org::SSLCert "/path/to/client/cert.pem";
+ example.org::SSLKey "/path/to/client/key.pem"
};
</literallayout>
</refsect1>