1 c: Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al. 2 SPDX-License-Identifier: curl 3 Long: capath 4 Arg: <dir> 5 Help: CA directory to verify peer against 6 Protocols: TLS 7 Category: tls 8 See-also: cacert insecure 9 Example: --capath /local/directory $URL 10 Added: 7.9.8 11 Multi: single 12 --- 13 Tells curl to use the specified certificate directory to verify the 14 peer. Multiple paths can be provided by separating them with ":" (e.g. 15 "path1:path2:path3"). The certificates must be in PEM format, and if curl is 16 built against OpenSSL, the directory must have been processed using the 17 c_rehash utility supplied with OpenSSL. Using --capath can allow 18 OpenSSL-powered curl to make SSL-connections much more efficiently than using 19 --cacert if the --cacert file contains many CA certificates. 20 21 If this option is set, the default capath value is ignored. 22