From c2f475ff968a25fc4721fb1d340e9cce2dbf4786 Mon Sep 17 00:00:00 2001 From: sechkin Date: Thu, 9 Jan 2025 16:29:53 +0200 Subject: [PATCH] Added final lines files and used changed markdown syntax to be consistent --- examples/tomcat-security/README.md | 5 ++--- examples/tomcat-security/keystore.yaml | 4 +--- examples/tomcat-security/keystoreAndTruststore.yaml | 4 +--- examples/tomcat-security/truststore.yaml | 2 -- 4 files changed, 4 insertions(+), 11 deletions(-) diff --git a/examples/tomcat-security/README.md b/examples/tomcat-security/README.md index e87c21e..bc4511b 100644 --- a/examples/tomcat-security/README.md +++ b/examples/tomcat-security/README.md @@ -1,5 +1,4 @@ -Configuring Tomcat server with SSL/TLS -=== +# Configuring Tomcat server with SSL/TLS This guide provides instructions for configuring the embedded GraphDB Tomcat server with SSL/TLS. There are 3 scenarios for configuring the security of the GraphDB instance: @@ -7,7 +6,7 @@ There are 3 scenarios for configuring the security of the GraphDB instance: - By providing keystore and truststore - used to configure mTLS. - By providing a truststore - used in cases where GraphDB should trust an external service. -**Note** +**Note:** If the Tomcat server is configured with SSL/TLS it will also configure the cluster gRPC communication SSL/TLS. ### See more about Tomcat TLS/SSL set up: diff --git a/examples/tomcat-security/keystore.yaml b/examples/tomcat-security/keystore.yaml index 65d2f4e..9c681c8 100644 --- a/examples/tomcat-security/keystore.yaml +++ b/examples/tomcat-security/keystore.yaml @@ -5,8 +5,6 @@ configuration: keystoreKey: keystore.jks keystorePasswordKey: keystore_password keyAlias: graphdb - # The path where the TLS files will be mounted inside the container. - mountPath: /etc/graphdb/tls/tomcat/ startupProbe: httpGet: scheme: HTTPS @@ -25,4 +23,4 @@ proxy: scheme: HTTPS livenessProbe: httpGet: - scheme: HTTPS \ No newline at end of file + scheme: HTTPS diff --git a/examples/tomcat-security/keystoreAndTruststore.yaml b/examples/tomcat-security/keystoreAndTruststore.yaml index 55c65fd..ee74c26 100644 --- a/examples/tomcat-security/keystoreAndTruststore.yaml +++ b/examples/tomcat-security/keystoreAndTruststore.yaml @@ -9,8 +9,6 @@ configuration: existingSecret: my-truststore-secret truststoreKey: truststore.jks truststorePasswordKey: truststore_password - # The path where the TLS files will be mounted inside the container. - mountPath: /etc/graphdb/tls/tomcat/ startupProbe: httpGet: scheme: HTTPS @@ -29,4 +27,4 @@ proxy: scheme: HTTPS livenessProbe: httpGet: - scheme: HTTPS \ No newline at end of file + scheme: HTTPS diff --git a/examples/tomcat-security/truststore.yaml b/examples/tomcat-security/truststore.yaml index c806492..8419321 100644 --- a/examples/tomcat-security/truststore.yaml +++ b/examples/tomcat-security/truststore.yaml @@ -4,5 +4,3 @@ configuration: existingSecret: my-truststore-secret truststoreKey: truststore.jks truststorePasswordKey: truststore_password - # The path where the TLS files will be mounted inside the container. - mountPath: /etc/graphdb/tls/tomcat/ \ No newline at end of file