From 9407ad8b8422a2a9e8f66afb06506a25f6ae053e 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 f9811fe4..32b92845 100644 --- a/README.md +++ b/README.md @@ -110,6 +110,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 08d67944a166b7d671bee2353f8030a9883fc242 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 32b92845..915fecfe 100644 --- a/README.md +++ b/README.md @@ -111,6 +111,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 ```