Skip to content

Combining Multiple Root CAs into a single file

Ryan Willis edited this page Feb 7, 2025 · 1 revision

Combining Multiple Root CAs into a single file

Windows

cmd /c copy rootCA1.crt+rootCA2.crt+rootCA3.crt certificateBundle.crt

MacOS/*nix

cat rootCA1.crt rootCA2.crt rootCA3.crt > certificateBundle.crt
Clone this wiki locally