History log of /curl/docs/cmdline-opts/dump-ca-embed.md (Results 1 – 2 of 2)
Revision Date Author Comments
# 430af3fb 29-Aug-2024 Daniel Stenberg

dump-ca-embed.md: set as "boolean", not "single"

Because it is. And it makes the template manpage explanation for it make
sense.

Follow-up to 8a3740bc8e558b9a9d4a652b

C

dump-ca-embed.md: set as "boolean", not "single"

Because it is. And it makes the template manpage explanation for it make
sense.

Follow-up to 8a3740bc8e558b9a9d4a652b

Closes #14731

show more ...


# 8a3740bc 29-Jun-2024 Viktor Szakats

curl: support embedding a CA bundle

Add the ability to embed a CA bundle into the curl binary. It is used
when no other runtime or build-time option set one.

This helps curl-for

curl: support embedding a CA bundle

Add the ability to embed a CA bundle into the curl binary. It is used
when no other runtime or build-time option set one.

This helps curl-for-win macOS and Linux builds to run standalone, and
also helps Windows builds to avoid picking up the CA bundle from an
arbitrary (possibly world-writable) location (though this behaviour is
not currently disablable).

Usage:
- cmake: `-DCURL_CA_EMBED=/path/to/curl-ca-bundle.crt`
- autotools: `--with-ca-embed=/path/to/curl-ca-bundle.crt`
- Makefile.mk: `CURL_CA_EMBED=/path/to/curl-ca-bundle.crt`

Also add new command-line option `--dump-ca-embed` to dump the embedded
CA bundle to standard output.

Closes #14059

show more ...