blob: c7cca2b03ab733fa828885c7ce03c3c9b4a69999 [file] [log] [blame]
jhhd74fe9f2021-04-15 11:04:39 -05001#
2# ============LICENSE_START=======================================================
3# ONAP
4# ================================================================================
5# Copyright (C) 2021 AT&T Intellectual Property. All rights reserved.
6# ================================================================================
7# Licensed under the Apache License, Version 2.0 (the "License");
8# you may not use this file except in compliance with the License.
9# You may obtain a copy of the License at
10#
11# http://www.apache.org/licenses/LICENSE-2.0
12#
13# Unless required by applicable law or agreed to in writing, software
14# distributed under the License is distributed on an "AS IS" BASIS,
15# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16# See the License for the specific language governing permissions and
17# limitations under the License.
18# ============LICENSE_END=========================================================
19#
20
21# system properties set within the application
22
23java.net.preferIPv4Stack=true
24
25# jmx
26
27com.sun.management.jmxremote.port=9991
28com.sun.management.jmxremote.authenticate=false
29com.sun.management.jmxremote.ssl=false
30
31# certs
32
33javax.net.ssl.trustStore=${envd:TRUSTSTORE:/opt/app/policy/etc/ssl/policy-truststore}
34javax.net.ssl.trustStorePassword=${envd:TRUSTSTORE_PASSWD}
35
36javax.net.ssl.keyStore=${envd:KEYSTORE}
37javax.net.ssl.keyStorePassword=${envd:KEYSTORE_PASSWD}
38
39# kie
40
41kie.maven.offline.force=${envd:REPOSITORY_OFFLINE:false}
42
43# symmetric key for sensitive configuration data
44
45engine.symm.key=${envd:SYMM_KEY}