proxy-cert.md (662B)
1 --- 2 c: Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al. 3 SPDX-License-Identifier: curl 4 Long: proxy-cert 5 Arg: <cert[:passwd]> 6 Help: Set client certificate for proxy 7 Added: 7.52.0 8 Category: proxy tls 9 Multi: single 10 See-also: 11 - proxy 12 - proxy-key 13 - proxy-cert-type 14 Example: 15 - --proxy-cert file -x https://proxy $URL 16 --- 17 18 # `--proxy-cert` 19 20 Use the specified client certificate file when communicating with an HTTPS 21 proxy. The certificate must be PEM format. If the optional password is not 22 specified, it is queried for on the terminal. Use --proxy-key to provide the 23 private key. 24 25 This option is the equivalent to --cert but used in HTTPS proxy context.