Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[fix][doc] Fix proxy TLS doc error #704

Merged
merged 4 commits into from
Mar 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions versioned_docs/version-2.10.x/security-tls-transport.md
Original file line number Diff line number Diff line change
Expand Up @@ -192,8 +192,8 @@ Proxies need to configure TLS in two directions, for clients connecting to the p

# For clients connecting to the proxy
tlsEnabledInProxy=true
tlsCertificateFilePath=/path/to/broker.cert.pem
tlsKeyFilePath=/path/to/broker.key-pk8.pem
tlsCertificateFilePath=/path/to/proxy.cert.pem
tlsKeyFilePath=/path/to/proxy.key-pk8.pem
tlsTrustCertsFilePath=/path/to/ca.cert.pem

# For the proxy to connect to brokers
Expand Down
4 changes: 2 additions & 2 deletions versioned_docs/version-2.11.x/security-tls-transport.md
Original file line number Diff line number Diff line change
Expand Up @@ -238,8 +238,8 @@ webServicePortTls=8081

# configure certificates for clients to connect proxy
tlsRequireTrustedClientCertOnConnect=true
tlsCertificateFilePath=/path/to/broker.cert.pem
tlsKeyFilePath=/path/to/broker.key-pk8.pem
tlsCertificateFilePath=/path/to/proxy.cert.pem
tlsKeyFilePath=/path/to/proxy.key-pk8.pem

# enable mTLS
tlsTrustCertsFilePath=/path/to/ca.cert.pem
Expand Down
4 changes: 2 additions & 2 deletions versioned_docs/version-2.8.x/security-tls-transport.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,8 @@ Proxies need to configure TLS in two directions, for clients connecting to the p

# For clients connecting to the proxy
tlsEnabledInProxy=true
tlsCertificateFilePath=/path/to/broker.cert.pem
tlsKeyFilePath=/path/to/broker.key-pk8.pem
tlsCertificateFilePath=/path/to/proxy.cert.pem
tlsKeyFilePath=/path/to/proxy.key-pk8.pem
tlsTrustCertsFilePath=/path/to/ca.cert.pem

# For the proxy to connect to brokers
Expand Down
4 changes: 2 additions & 2 deletions versioned_docs/version-2.9.x/security-tls-transport.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,8 @@ Proxies need to configure TLS in two directions, for clients connecting to the p

# For clients connecting to the proxy
tlsEnabledInProxy=true
tlsCertificateFilePath=/path/to/broker.cert.pem
tlsKeyFilePath=/path/to/broker.key-pk8.pem
tlsCertificateFilePath=/path/to/proxy.cert.pem
tlsKeyFilePath=/path/to/proxy.key-pk8.pem
tlsTrustCertsFilePath=/path/to/ca.cert.pem

# For the proxy to connect to brokers
Expand Down
4 changes: 2 additions & 2 deletions versioned_docs/version-3.0.x/security-tls-transport.md
Original file line number Diff line number Diff line change
Expand Up @@ -237,8 +237,8 @@ servicePortTls=6651
webServicePortTls=8081

# configure certificates for clients to connect proxy
tlsCertificateFilePath=/path/to/broker.cert.pem
tlsKeyFilePath=/path/to/broker.key-pk8.pem
tlsCertificateFilePath=/path/to/proxy.cert.pem
tlsKeyFilePath=/path/to/proxy.key-pk8.pem
tlsTrustCertsFilePath=/path/to/ca.cert.pem

# enable mTLS
Expand Down
4 changes: 2 additions & 2 deletions versioned_docs/version-3.1.x/security-tls-transport.md
Original file line number Diff line number Diff line change
Expand Up @@ -237,8 +237,8 @@ servicePortTls=6651
webServicePortTls=8081

# configure certificates for clients to connect proxy
tlsCertificateFilePath=/path/to/broker.cert.pem
lhotari marked this conversation as resolved.
Show resolved Hide resolved
tlsKeyFilePath=/path/to/broker.key-pk8.pem
tlsCertificateFilePath=/path/to/proxy.cert.pem
tlsKeyFilePath=/path/to/proxy.key-pk8.pem
tlsTrustCertsFilePath=/path/to/ca.cert.pem

# enable mTLS
Expand Down
Loading