diff options
author | andrzejszukuc <andrzej.szukuc@nokia.com> | 2018-11-07 12:51:05 +0100 |
---|---|---|
committer | andrzejszukuc <andrzej.szukuc@nokia.com> | 2018-11-27 16:54:25 +0100 |
commit | 1afc93ddb4afc226562043822f6c5e9dc0ed4b2a (patch) | |
tree | 96f022e83da4c708b99b6d4ef1bc2ea465a526de /etc/collector.properties | |
parent | 174e08b4c4942eaa70cea889b4819334145216b9 (diff) |
TLS mutual authentication has been added.
Change-Id: I60ebe8e1b06d72413940935396cb7a56af437c0d
Issue-ID: DCAEGEN2-959
Signed-off-by: ANDRZEJ SZUKUC <andrzej.szukuc@nokia.com>
Diffstat (limited to 'etc/collector.properties')
-rwxr-xr-x | etc/collector.properties | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/etc/collector.properties b/etc/collector.properties index c9ccc133..475c49b0 100755 --- a/etc/collector.properties +++ b/etc/collector.properties @@ -23,11 +23,16 @@ collector.service.port=8080 ## When enabled - require valid keystore defined
collector.service.secure.port=8443
+collector.service.secure.clientauth=0
+
## The keystore must be setup per installation when secure port is configured
collector.keystore.file.location=etc/keystore
collector.keystore.passwordfile=etc/passwordfile
collector.keystore.alias=tomcat
+## The truststore must be setup per installation when mutual tls support is configured
+collector.truststore.file.location=etc/truststore
+collector.truststore.passwordfile=etc/trustpasswordfile
###############################################################################
## Processing
|