Minor spacing changes for readability

This commit is contained in:
Mike Solomon
2025-03-10 09:33:21 -07:00
parent 41539bfd59
commit 6eacf154bf

View File

@@ -11,10 +11,13 @@ import TabItem from '@theme/TabItem';
If your enterprise network security posture requires SSL certificates to be trusted prior to initiating an HTTPS request to your Moderne tenant, you will need to:
* Download the Moderne certificate from your Moderne tenant:
```bash
openssl s_client -showcerts -connect <tenant_name>.moderne.io:443 </dev/null 2>/dev/null | openssl x509 -outform DER > moderne_cert.der
```
* Add the Moderne certificate to the default TrustStore of the agent's JRE:
```bash
keytool -import -trustcacerts -keystore $JAVA_HOME/lib/security/cacerts -storepass changeit -noprompt -alias moderne-cert -file moderne_cert.der
```