efiacor | 87e2e55 | 2019-03-25 11:40:55 +0000 | [diff] [blame] | 1 | #------------------------------------------------------------------------------- |
| 2 | # ============LICENSE_START================================================== |
| 3 | # * org.onap.dmaap |
| 4 | # * =========================================================================== |
efiacor | 3d4b2a4 | 2019-10-11 17:03:25 +0100 | [diff] [blame] | 5 | # * Copyright © 2017 AT&T Intellectual Property. All rights reserved. |
efiacor | 87e2e55 | 2019-03-25 11:40:55 +0000 | [diff] [blame] | 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 |
efiacor | 3d4b2a4 | 2019-10-11 17:03:25 +0100 | [diff] [blame] | 60 | KeyStoreType = PKCS12 |
efiacor | 87e2e55 | 2019-03-25 11:40:55 +0000 | [diff] [blame] | 61 | # |
| 62 | # The type of truststore for https |
| 63 | TrustStoreType = jks |
| 64 | # |
efiacor | 87e2e55 | 2019-03-25 11:40:55 +0000 | [diff] [blame] | 65 | # The path to the file used to trigger an orderly shutdown |
| 66 | QuiesceFile = etc/SHUTDOWN |
| 67 | # |
| 68 | # The key used to generate passwords for node to node transfers |
| 69 | NodeAuthKey = Node123! |
| 70 | # |
| 71 | # DR_NODE DEFAULT ENABLED TLS PROTOCOLS |
| 72 | NodeHttpsProtocols = TLSv1.1|TLSv1.2 |
| 73 | # |
| 74 | # AAF type to generate permission string |
| 75 | AAFType = org.onap.dmaap-dr.feed |
| 76 | # |
| 77 | # AAF default instance to generate permission string - default should be legacy |
| 78 | AAFInstance = legacy |
| 79 | # |
| 80 | # AAF action to generate permission string - default should be publish |
| 81 | AAFAction = publish |
| 82 | # |
efiacor | 87e2e55 | 2019-03-25 11:40:55 +0000 | [diff] [blame] | 83 | # AAF CADI enabled flag |
| 84 | CadiEnabled = false |
efiacor | 3d4b2a4 | 2019-10-11 17:03:25 +0100 | [diff] [blame] | 85 | # |
| 86 | # AAF Props file path |
| 87 | AAFPropsFilePath = /opt/app/osaaf/local/org.onap.dmaap-dr.props |