From 59a6ea82ad5735b85ceaee002f6cc00366a45014 Mon Sep 17 00:00:00 2001 From: Foivos Zakkak Date: Thu, 10 Nov 2022 13:59:32 +0200 Subject: [PATCH] Doc: Fix statement about CA certs embedding --- docs/src/main/asciidoc/native-and-ssl.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/main/asciidoc/native-and-ssl.adoc b/docs/src/main/asciidoc/native-and-ssl.adoc index c622261dc511e..4ab85e7baf95a 100644 --- a/docs/src/main/asciidoc/native-and-ssl.adoc +++ b/docs/src/main/asciidoc/native-and-ssl.adoc @@ -248,7 +248,7 @@ The easiest way to do so is by setting `quarkus.native.additional-build-args`. F quarkus.native.additional-build-args=-J-Djavax.net.ssl.trustStore=/tmp/mycerts,-J-Djavax.net.ssl.trustStorePassword=changeit ---- -will ensure that the certificates of `/tmp/mycerts` are baked into the native binary and used *in addition* to the default `cacerts`. +will ensure that the certificates of `/tmp/mycerts` are baked into the native binary and used *instead* of the default `cacerts`. The file containing the custom TrustStore does *not* (and probably should not) have to be present at runtime as its content has been baked into the native binary. === Run time configuration