You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -139,7 +135,7 @@ Therefore you'll want to make sure that you either work in a branch that you do
139
135
140
136
. Get your changes merged into upstream
141
137
.. Send a GitHub pull request, by clicking the pull request link while in your repo's fork.
142
-
.. An email will automatically be sent to the ActiveMQ developer list.
138
+
.. An email will automatically be sent to the Artemis issues mailing list.
143
139
.. As part of the review you may see an automated test run comment on your request.
144
140
.. After review a maintainer will merge your PR into the canonical git repository at which point those changes will be synced with the GitHub mirror repository (i.e. your `main`) and your PR will be closed by the `asfgit` bot.
Copy file name to clipboardExpand all lines: docs/user-manual/configuring-transports.adoc
+17-17Lines changed: 17 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -303,30 +303,30 @@ When used on an `acceptor` this is the path to the SSL key store on the server w
303
303
When used on a `connector` this is the path to the client-side SSL key store which holds the client certificates.
304
304
This is only relevant for a `connector` if you are using 2-way SSL (i.e. mutual authentication).
305
305
Although this value is configured on the server, it is downloaded and used by the client.
306
-
If the client needs to use a different path from that set on the server then it can override the server-side setting by either using the customary "javax.net.ssl.keyStore" system property or the ActiveMQ-specific "org.apache.activemq.ssl.keyStore" system property.
307
-
The ActiveMQ-specific system property is useful if another component on the client is already making use of the standard Java system property.
306
+
If the client needs to use a different path from that set on the server then it can override the server-side setting by either using the customary "javax.net.ssl.keyStore" system property or the Artemis-specific "org.apache.activemq.ssl.keyStore" system property.
307
+
The Artemis-specific system property is useful if another component on the client is already making use of the standard Java system property.
308
308
309
309
keyStorePassword::
310
310
When used on an `acceptor` this is the password for the server-side keystore.
311
311
+
312
312
When used on a `connector` this is the password for the client-side keystore.
313
313
This is only relevant for a `connector` if you are using 2-way SSL (i.e. mutual authentication).
314
314
Although this value can be configured on the server, it is downloaded and used by the client.
315
-
If the client needs to use a different password from that set on the server then it can override the server-side setting by either using the customary "javax.net.ssl.keyStorePassword" system property or the ActiveMQ-specific "org.apache.activemq.ssl.keyStorePassword" system property.
316
-
The ActiveMQ-specific system property is useful if another component on the client is already making use of the standard Java system property.
315
+
If the client needs to use a different password from that set on the server then it can override the server-side setting by either using the customary "javax.net.ssl.keyStorePassword" system property or the Artemis-specific "org.apache.activemq.ssl.keyStorePassword" system property.
316
+
The Artemis-specific system property is useful if another component on the client is already making use of the standard Java system property.
317
317
318
318
keyStoreType::
319
319
The type of keystore being used.
320
320
For example, `JKS`, `JCEKS`, `PKCS12`, `PEM` etc.
321
-
This value can also be set via the "javax.net.ssl.keyStoreType" system property or the ActiveMQ-specific "org.apache.activemq.ssl.keyStoreType" system property.
322
-
The ActiveMQ-specific system property is useful if another component on the client is already making use of the standard Java system property.
321
+
This value can also be set via the "javax.net.ssl.keyStoreType" system property or the Artemis-specific "org.apache.activemq.ssl.keyStoreType" system property.
322
+
The Artemis-specific system property is useful if another component on the client is already making use of the standard Java system property.
323
323
Default is `JKS`.
324
324
325
325
keyStoreProvider::
326
326
The provider used for the keystore.
327
327
For example, `SUN`, `SunJCE`, etc.
328
-
This value can also be set via the "javax.net.ssl.keyStoreProvider" system property or the ActiveMQ-specific "org.apache.activemq.ssl.keyStoreProvider" system property.
329
-
The ActiveMQ-specific system property is useful if another component on the client is already making use of the standard Java system property.
328
+
This value can also be set via the "javax.net.ssl.keyStoreProvider" system property or the Artemis-specific "org.apache.activemq.ssl.keyStoreProvider" system property.
329
+
The Artemis-specific system property is useful if another component on the client is already making use of the standard Java system property.
330
330
Default is `null`.
331
331
332
332
keyStoreAlias::
@@ -343,30 +343,30 @@ This is only relevant for an `acceptor` if you are using 2-way SSL (i.e. mutual
343
343
+
344
344
When used on a `connector` this is the path to the client-side SSL key store which holds the public keys of all the servers that the client trusts.
345
345
Although this value can be configured on the server, it is downloaded and used by the client.
346
-
If the client needs to use a different path from that set on the server then it can override the server-side setting by either using the customary "javax.net.ssl.trustStore" system property or the ActiveMQ-specific "org.apache.activemq.ssl.trustStore" system property.
347
-
The ActiveMQ-specific system property is useful if another component on the client is already making use of the standard Java system property.
346
+
If the client needs to use a different path from that set on the server then it can override the server-side setting by either using the customary "javax.net.ssl.trustStore" system property or the Artemis-specific "org.apache.activemq.ssl.trustStore" system property.
347
+
The Artemis-specific system property is useful if another component on the client is already making use of the standard Java system property.
348
348
349
349
trustStorePassword::
350
350
When used on an `acceptor` this is the password for the server-side trust store.
351
351
This is only relevant for an `acceptor` if you are using 2-way SSL (i.e. mutual authentication).
352
352
+
353
353
When used on a `connector` this is the password for the client-side truststore.
354
354
Although this value can be configured on the server, it is downloaded and used by the client.
355
-
If the client needs to use a different password from that set on the server then it can override the server-side setting by either using the customary "javax.net.ssl.trustStorePassword" system property or the ActiveMQ-specific "org.apache.activemq.ssl.trustStorePassword" system property.
356
-
The ActiveMQ-specific system property is useful if another component on the client is already making use of the standard Java system property.
355
+
If the client needs to use a different password from that set on the server then it can override the server-side setting by either using the customary "javax.net.ssl.trustStorePassword" system property or the Artemis-specific "org.apache.activemq.ssl.trustStorePassword" system property.
356
+
The Artemis-specific system property is useful if another component on the client is already making use of the standard Java system property.
357
357
358
358
trustStoreType::
359
359
The type of truststore being used.
360
360
For example, `JKS`, `JCEKS`, `PKCS12`, `PEM` etc.
361
-
This value can also be set via the "javax.net.ssl.trustStoreType" system property or the ActiveMQ-specific "org.apache.activemq.ssl.trustStoreType" system property.
362
-
The ActiveMQ-specific system property is useful if another component on the client is already making use of the standard Java system property.
361
+
This value can also be set via the "javax.net.ssl.trustStoreType" system property or the Artemis-specific "org.apache.activemq.ssl.trustStoreType" system property.
362
+
The Artemis-specific system property is useful if another component on the client is already making use of the standard Java system property.
363
363
Default is `JKS`.
364
364
365
365
trustStoreProvider::
366
366
The provider used for the truststore.
367
367
For example, `SUN`, `SunJCE`, etc.
368
-
This value can also be set via the "javax.net.ssl.trustStoreProvider" system property or the ActiveMQ-specific "org.apache.activemq.ssl.trustStoreProvider" system property.
369
-
The ActiveMQ-specific system property is useful if another component on the client is already making use of the standard Java system property.
368
+
This value can also be set via the "javax.net.ssl.trustStoreProvider" system property or the Artemis-specific "org.apache.activemq.ssl.trustStoreProvider" system property.
369
+
The Artemis-specific system property is useful if another component on the client is already making use of the standard Java system property.
370
370
Default is `null`.
371
371
372
372
enabledCipherSuites::
@@ -412,7 +412,7 @@ Valid values are `true` or `false`.
412
412
Default is `false`.
413
413
414
414
forceSSLParameters::
415
-
When used on a `connector` any SSL settings that are set as parameters on the connector will be used instead of JVM system properties including both javax.net.ssl and ActiveMQ system properties to configure the SSL context for this connector.
415
+
When used on a `connector` any SSL settings that are set as parameters on the connector will be used instead of JVM system properties including both javax.net.ssl and Artemis system properties to configure the SSL context for this connector.
0 commit comments