This is an automated email from the ASF dual-hosted git repository.
clebertsuconic pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git
The following commit(s) were added to refs/heads/master by this push:
new 7cf787a NO-JIRA: web-server.md documentation typos
new 4110092 This closes #3264
7cf787a is described below
commit 7cf787af555ca2fb6ed729f1226626cbdb70ce5d
Author: Urs Roesch <[email protected]>
AuthorDate: Wed Sep 16 12:17:46 2020 +0200
NO-JIRA: web-server.md documentation typos
Fixing case for `trustStorePath`, `trustStorePassword`, `keyStorePath`
and `keyStorePassword` to prevent org.xml.sax.SAXParseException.
---
docs/user-manual/en/web-server.md | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/docs/user-manual/en/web-server.md
b/docs/user-manual/en/web-server.md
index 7dc8ce1..8e48a36 100644
--- a/docs/user-manual/en/web-server.md
+++ b/docs/user-manual/en/web-server.md
@@ -30,15 +30,15 @@ The `web` element has the following attributes:
- `clientAuth` Whether or not clients should present an SSL certificate when
they connect. Only applicable when using `https`.
- `passwordCodec` The custom coded to use for unmasking the `keystorePassword`
- and `truststorePassword`.
-- `keystorePath` The location on disk of the keystore. Only applicable when
+ and `trustStorePassword`.
+- `keyStorePath` The location on disk of the keystore. Only applicable when
using `https`.
-- `keystorePassword` The password to the keystore. Only applicable when using
+- `keyStorePassword` The password to the keystore. Only applicable when using
`https`. Can be masked using `ENC()` syntax or by defining `passwordCodec`.
See more in the [password masking](masking-passwords.md) chapter.
-- `truststorePath` The location on disk fo the truststore. Only applicable when
+- `trustStorePath` The location on disk for the truststore. Only applicable
when
using `https`.
-- `truststorePassword` The password to the truststore. Only applicable when
+- `trustStorePassword` The password to the truststore. Only applicable when
using `https`. Can be masked using `ENC()` syntax or by defining
`passwordCodec`. See more in the [password masking](masking-passwords.md)
chapter.
@@ -88,4 +88,4 @@ Here is an example configuration:
<app url="console" war="console.war"/>
<request-log filename="${artemis.instance}/log/http-access-yyyy_MM_dd.log"
append="true" extended="true"/>
</web>
-```
\ No newline at end of file
+```