proxy-cacert.md (704B)
1 --- 2 c: Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al. 3 SPDX-License-Identifier: curl 4 Long: proxy-cacert 5 Help: CA certificates to verify proxy against 6 Arg: <file> 7 Added: 7.52.0 8 Category: proxy tls 9 Multi: single 10 See-also: 11 - proxy-capath 12 - cacert 13 - capath 14 - dump-ca-embed 15 - proxy 16 Example: 17 - --proxy-cacert CA-file.txt -x https://proxy $URL 18 --- 19 20 # `--proxy-cacert` 21 22 Use the specified certificate file to verify the HTTPS proxy. The file may 23 contain multiple CA certificates. The certificate(s) must be in PEM format. 24 25 This allows you to use a different trust for the proxy compared to the remote 26 server connected to via the proxy. 27 28 Equivalent to --cacert but used in HTTPS proxy context.