From 9cebc8804bf45fac6107195c332479a2d5decb54 Mon Sep 17 00:00:00 2001 From: markpanganiban <107645285+markpanganiban@users.noreply.github.com> Date: Mon, 26 Aug 2024 12:42:42 -0400 Subject: [PATCH 1/2] Added the trustStore password to readme --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index dc5354fd..87657012 100644 --- a/README.md +++ b/README.md @@ -118,6 +118,11 @@ If you are using a Private CA SSL certificate not recognized by the default Java tw -Djavax.net.ssl.trustStore=/absolute/path/to/cacerts info ``` +You can also set the trustStore's password in case you are not using the default password which is `changeit`: +```bash +tw -Djavax.net.ssl.trustStore= -Djavax.net.ssl.trustStorePassword= info +``` + You can rename the binary to `tw-binary` and create a `tw` script to automatically include the custom `cacerts` store in every session: ```bash From 64d189e4cdba7b9872ace4120047719e947c92ec Mon Sep 17 00:00:00 2001 From: markpanganiban Date: Mon, 26 Aug 2024 13:01:29 -0400 Subject: [PATCH 2/2] Fixed missing newline for markdown --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 87657012..fe961caa 100644 --- a/README.md +++ b/README.md @@ -119,6 +119,7 @@ tw -Djavax.net.ssl.trustStore=/absolute/path/to/cacerts info ``` You can also set the trustStore's password in case you are not using the default password which is `changeit`: + ```bash tw -Djavax.net.ssl.trustStore= -Djavax.net.ssl.trustStorePassword= info ```