From 3a312620de98efc52ae1587ed254ca1ee850f939 Mon Sep 17 00:00:00 2001 From: Richard Maw Date: Tue, 11 Feb 2025 20:11:48 +0000 Subject: [PATCH] Document using URI to connect to SSL server --- doc/SSL.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/doc/SSL.md b/doc/SSL.md index 579eb77530..b7b20959a1 100644 --- a/doc/SSL.md +++ b/doc/SSL.md @@ -174,3 +174,14 @@ or while running from git ``` ./gradlew run --args=rptools-maptool+tcp://${localips[0]}:51231 ``` + +## 5. Connecting to a SSL enabled MapTool server directly + +With the certificate installed in the system certificate store +the second `TCP-LISTEN` socat tunnel can be omitted +and the new `rptools-maptool+tcps://` scheme used +to connect from the command-line to port 51232. + +``` +./gradlew run --args=rptools-maptool+tcps://${localips[0]}:51232 +```