NO-JIRA: web-server.md documentation typos

Fixing case for `trustStorePath`, `trustStorePassword`, `keyStorePath`
and `keyStorePassword` to prevent org.xml.sax.SAXParseException.
This commit is contained in:
Urs Roesch 2020-09-16 12:17:46 +02:00 committed by Clebert Suconic
parent 42d7c33268
commit 7cf787af55

View File

@ -30,15 +30,15 @@ The `web` element has the following attributes:
- `clientAuth` Whether or not clients should present an SSL certificate when - `clientAuth` Whether or not clients should present an SSL certificate when
they connect. Only applicable when using `https`. they connect. Only applicable when using `https`.
- `passwordCodec` The custom coded to use for unmasking the `keystorePassword` - `passwordCodec` The custom coded to use for unmasking the `keystorePassword`
and `truststorePassword`. and `trustStorePassword`.
- `keystorePath` The location on disk of the keystore. Only applicable when - `keyStorePath` The location on disk of the keystore. Only applicable when
using `https`. 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`. `https`. Can be masked using `ENC()` syntax or by defining `passwordCodec`.
See more in the [password masking](masking-passwords.md) chapter. 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`. 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 using `https`. Can be masked using `ENC()` syntax or by defining
`passwordCodec`. See more in the [password masking](masking-passwords.md) `passwordCodec`. See more in the [password masking](masking-passwords.md)
chapter. chapter.