efiacor | d73829d | 2021-07-16 14:49:14 +0100 | [diff] [blame] | 1 | # ============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 |
| 20 | org.onap.dmaap.datarouter.provserver.http.port = 8080 |
| 21 | org.onap.dmaap.datarouter.provserver.https.port = 8443 |
| 22 | org.onap.dmaap.datarouter.provserver.https.relaxation = true |
| 23 | |
| 24 | org.onap.dmaap.datarouter.provserver.aafprops.path = /opt/app/osaaf/local/org.onap.dmaap-dr.props |
| 25 | |
| 26 | org.onap.dmaap.datarouter.provserver.accesslog.dir = /opt/app/datartr/logs |
| 27 | org.onap.dmaap.datarouter.provserver.spooldir = /opt/app/datartr/spool |
| 28 | org.onap.dmaap.datarouter.provserver.dbscripts = /opt/app/datartr/etc/misc |
| 29 | org.onap.dmaap.datarouter.provserver.logretention = 30 |
| 30 | |
| 31 | #DMAAP-597 (Tech Dept) REST request source IP auth |
| 32 | # relaxation to accommodate OOM kubernetes deploy |
| 33 | org.onap.dmaap.datarouter.provserver.isaddressauthenabled = false |
| 34 | |
| 35 | #Localhost address config |
| 36 | org.onap.dmaap.datarouter.provserver.localhost = 127.0.0.1 |
| 37 | |
| 38 | # Database access |
| 39 | org.onap.dmaap.datarouter.db.driver = org.mariadb.jdbc.Driver |
| 40 | org.onap.dmaap.datarouter.db.url = jdbc:mariadb://datarouter-mariadb:3306/datarouter |
| 41 | org.onap.dmaap.datarouter.db.login = datarouter |
| 42 | org.onap.dmaap.datarouter.db.password = datarouter |
| 43 | |
| 44 | # PROV - DEFAULT ENABLED TLS PROTOCOLS |
| 45 | org.onap.dmaap.datarouter.provserver.https.include.protocols = TLSv1.1|TLSv1.2 |
| 46 | |
| 47 | # AAF config |
| 48 | org.onap.dmaap.datarouter.provserver.cadi.enabled = false |
| 49 | |
| 50 | org.onap.dmaap.datarouter.provserver.passwordencryption = PasswordEncryptionKey#@$%^&1234# |
| 51 | org.onap.dmaap.datarouter.provserver.aaf.feed.type = org.onap.dmaap-dr.feed |
| 52 | org.onap.dmaap.datarouter.provserver.aaf.sub.type = org.onap.dmaap-dr.sub |
| 53 | org.onap.dmaap.datarouter.provserver.aaf.instance = legacy |
| 54 | org.onap.dmaap.datarouter.provserver.aaf.action.publish = publish |
david.mcweeney | d70c2ca | 2022-03-16 16:08:44 +0000 | [diff] [blame] | 55 | org.onap.dmaap.datarouter.provserver.aaf.action.subscribe = subscribe |
| 56 | org.onap.dmaap.datarouter.provserver.tlsenabled = true |
| 57 | org.onap.dmaap.datarouter.nodeserver.https.port = 8443 |
| 58 | org.onap.dmaap.datarouter.nodeserver.http.port = 8080 |