efiacor | 87e2e55 | 2019-03-25 11:40:55 +0000 | [diff] [blame] | 1 | #------------------------------------------------------------------------------- |
| 2 | # ============LICENSE_START================================================== |
| 3 | # * org.onap.dmaap |
| 4 | # * =========================================================================== |
| 5 | # * Copyright � 2017 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 | # * ECOMP is a trademark and service mark of AT&T Intellectual Property. |
| 21 | # * |
| 22 | #------------------------------------------------------------------------------- |
| 23 | # |
| 24 | # Configuration parameters set at startup for the DataRouter node |
| 25 | # |
| 26 | # URL to retrieve dynamic configuration |
| 27 | ProvisioningURL = https://dmaap-dr-prov:8443/internal/prov |
| 28 | # |
| 29 | # URL to upload PUB/DEL/EXP logs |
| 30 | LogUploadURL = https://dmaap-dr-prov:8443/internal/logs |
| 31 | # |
| 32 | # The port number for http as seen within the server |
| 33 | IntHttpPort = 8080 |
| 34 | # |
| 35 | # The port number for https as seen within the server |
| 36 | IntHttpsPort = 8443 |
| 37 | # |
| 38 | # The external port number for https taking port mapping into account |
| 39 | ExtHttpsPort = 443 |
| 40 | # |
| 41 | # The minimum interval between fetches of the dynamic configuration from the provisioning server |
| 42 | MinProvFetchInterval = 10000 |
| 43 | # |
| 44 | # The minimum interval between saves of the redirection data file |
| 45 | MinRedirSaveInterval = 10000 |
| 46 | # |
| 47 | # The path to the directory where log files are stored |
| 48 | LogDir = /opt/app/datartr/logs |
| 49 | # |
| 50 | # The retention interval (in days) for log files |
| 51 | LogRetention = 30 |
| 52 | # |
| 53 | # The path to the directories where data and meta data files are stored |
| 54 | SpoolDir = /opt/app/datartr/spool |
| 55 | # |
| 56 | # The path to the redirection data file |
| 57 | RedirectionFile = etc/redirections.dat |
| 58 | # |
| 59 | # The type of keystore for https |
| 60 | KeyStoreType = jks |
| 61 | # |
| 62 | # The path to the keystore for https |
| 63 | KeyStoreFile = /opt/app/datartr/aaf_certs/org.onap.dmaap-dr.jks |
| 64 | # |
| 65 | # The password for the https keystore |
econwar | da93782 | 2019-04-05 12:44:16 +0000 | [diff] [blame] | 66 | KeyStorePassword=WGxd2P6MDo*Bi4+UdzWs{?$8 |
efiacor | 87e2e55 | 2019-03-25 11:40:55 +0000 | [diff] [blame] | 67 | # |
| 68 | # The password for the private key in the https keystore |
econwar | da93782 | 2019-04-05 12:44:16 +0000 | [diff] [blame] | 69 | KeyPassword=WGxd2P6MDo*Bi4+UdzWs{?$8 |
efiacor | 87e2e55 | 2019-03-25 11:40:55 +0000 | [diff] [blame] | 70 | # |
| 71 | # The type of truststore for https |
| 72 | TrustStoreType = jks |
| 73 | # |
| 74 | # The path to the truststore for https |
| 75 | TrustStoreFile = /opt/app/datartr/aaf_certs/org.onap.dmaap-dr.trust.jks |
| 76 | # |
| 77 | # The password for the https truststore |
econwar | da93782 | 2019-04-05 12:44:16 +0000 | [diff] [blame] | 78 | TrustStorePassword=)OBvCd{e{aWq.^mJJdX:S:1& |
efiacor | 87e2e55 | 2019-03-25 11:40:55 +0000 | [diff] [blame] | 79 | # |
| 80 | # The path to the file used to trigger an orderly shutdown |
| 81 | QuiesceFile = etc/SHUTDOWN |
| 82 | # |
| 83 | # The key used to generate passwords for node to node transfers |
| 84 | NodeAuthKey = Node123! |
| 85 | # |
| 86 | # DR_NODE DEFAULT ENABLED TLS PROTOCOLS |
| 87 | NodeHttpsProtocols = TLSv1.1|TLSv1.2 |
| 88 | # |
| 89 | # AAF type to generate permission string |
| 90 | AAFType = org.onap.dmaap-dr.feed |
| 91 | # |
| 92 | # AAF default instance to generate permission string - default should be legacy |
| 93 | AAFInstance = legacy |
| 94 | # |
| 95 | # AAF action to generate permission string - default should be publish |
| 96 | AAFAction = publish |
| 97 | # |
| 98 | # AAF URL to connect to AAF server |
| 99 | AafUrl = https://aaf-onap-test.osaaf.org:8095 |
| 100 | # |
| 101 | # AAF CADI enabled flag |
| 102 | CadiEnabled = false |
| 103 | |