blob: b38c3f56cba18df8ca1e58b0c4748470c74f9626 [file] [log] [blame]
efiacord73829d2021-07-16 14:49:14 +01001# ============LICENSE_START===================================================
2# Copyright (C) 2019-2021 Nordix Foundation.
3# ============================================================================
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16# SPDX-License-Identifier: Apache-2.0
17# ============LICENSE_END=====================================================
18
19#Jetty Server properties
20org.onap.dmaap.datarouter.provserver.http.port = 8080
21org.onap.dmaap.datarouter.provserver.https.port = 8443
22org.onap.dmaap.datarouter.provserver.https.relaxation = true
23
24org.onap.dmaap.datarouter.provserver.aafprops.path = /opt/app/osaaf/local/org.onap.dmaap-dr.props
25
26org.onap.dmaap.datarouter.provserver.accesslog.dir = /opt/app/datartr/logs
27org.onap.dmaap.datarouter.provserver.spooldir = /opt/app/datartr/spool
28org.onap.dmaap.datarouter.provserver.dbscripts = /opt/app/datartr/etc/misc
29org.onap.dmaap.datarouter.provserver.logretention = 30
30
31#DMAAP-597 (Tech Dept) REST request source IP auth
32# relaxation to accommodate OOM kubernetes deploy
33org.onap.dmaap.datarouter.provserver.isaddressauthenabled = false
34
35#Localhost address config
36org.onap.dmaap.datarouter.provserver.localhost = 127.0.0.1
37
38# Database access
39org.onap.dmaap.datarouter.db.driver = org.mariadb.jdbc.Driver
40org.onap.dmaap.datarouter.db.url = jdbc:mariadb://datarouter-mariadb:3306/datarouter
41org.onap.dmaap.datarouter.db.login = datarouter
42org.onap.dmaap.datarouter.db.password = datarouter
43
44# PROV - DEFAULT ENABLED TLS PROTOCOLS
45org.onap.dmaap.datarouter.provserver.https.include.protocols = TLSv1.1|TLSv1.2
46
47# AAF config
48org.onap.dmaap.datarouter.provserver.cadi.enabled = false
49
50org.onap.dmaap.datarouter.provserver.passwordencryption = PasswordEncryptionKey#@$%^&1234#
51org.onap.dmaap.datarouter.provserver.aaf.feed.type = org.onap.dmaap-dr.feed
52org.onap.dmaap.datarouter.provserver.aaf.sub.type = org.onap.dmaap-dr.sub
53org.onap.dmaap.datarouter.provserver.aaf.instance = legacy
54org.onap.dmaap.datarouter.provserver.aaf.action.publish = publish
david.mcweeneyd70c2ca2022-03-16 16:08:44 +000055org.onap.dmaap.datarouter.provserver.aaf.action.subscribe = subscribe
56org.onap.dmaap.datarouter.provserver.tlsenabled = true
57org.onap.dmaap.datarouter.nodeserver.https.port = 8443
58org.onap.dmaap.datarouter.nodeserver.http.port = 8080