proxy-capath.md (989B)
1 --- 2 c: Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al. 3 SPDX-License-Identifier: curl 4 Long: proxy-capath 5 Help: CA directory to verify proxy against 6 Arg: <dir> 7 Added: 7.52.0 8 Category: proxy tls 9 Multi: single 10 See-also: 11 - proxy-cacert 12 - proxy 13 - capath 14 - dump-ca-embed 15 Example: 16 - --proxy-capath /local/directory -x https://proxy $URL 17 --- 18 19 # `--proxy-capath` 20 21 Same as --capath but used in HTTPS proxy context. 22 23 Use the specified certificate directory to verify the proxy. Multiple paths 24 can be provided by separating them with colon (`:`) (e.g. `path1:path2:path3`). The 25 certificates must be in PEM format, and if curl is built against OpenSSL, the 26 directory must have been processed using the c_rehash utility supplied with 27 OpenSSL. Using --proxy-capath can allow OpenSSL-powered curl to make 28 SSL-connections much more efficiently than using --proxy-cacert if the 29 --proxy-cacert file contains many CA certificates. 30 31 If this option is set, the default capath value is ignored.