From 7809e2a0d4b68779c03ffd3ce7fd3dab7162d4a4 Mon Sep 17 00:00:00 2001 From: Morten Tokle Date: Fri, 21 Jun 2019 14:50:28 +0200 Subject: tls config from deploy params --- .../main/resources/configdefinitions/jdisc.http.connector.def | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'jdisc_http_service/src/main/resources') diff --git a/jdisc_http_service/src/main/resources/configdefinitions/jdisc.http.connector.def b/jdisc_http_service/src/main/resources/configdefinitions/jdisc.http.connector.def index 7735420d803..c6c6fad345b 100644 --- a/jdisc_http_service/src/main/resources/configdefinitions/jdisc.http.connector.def +++ b/jdisc_http_service/src/main/resources/configdefinitions/jdisc.http.connector.def @@ -56,12 +56,18 @@ throttling.idleTimeout double default=-1.0 # Whether to enable SSL for this connector. ssl.enabled bool default=false -# File with private key in PEM format +# File with private key in PEM format. Specify either this or privateKey, but not both ssl.privateKeyFile string default="" -# File with certificate in PEM format +# Private key in PEM format. Specify either this or privateKeyFile, but not both +ssl.privateKey string default="" + +# File with certificate in PEM format. Specify either this or certificate, but not both ssl.certificateFile string default="" +# Certificate in PEM format. Specify either this or certificateFile, but not both +ssl.certificate string default="" + # with trusted CA certificates in PEM format. Used to verify clients ssl.caCertificateFile string default="" -- cgit v1.2.3