blob: fb97702f4c9ef02b3d6a8cce2ab50ea1a0332467 [file] [log] [blame]
sg481naaf2df82017-08-03 17:56:38 -04001#-------------------------------------------------------------------------------
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 fixed at startup for the DataRouter node
25#
26# URL to retrieve dynamic configuration
27#
28#ProvisioningURL: ${DRTR_PROV_INTURL}
29ProvisioningURL=https://prov.datarouternew.com:8443/internal/prov
30
31#
32# URL to upload PUB/DEL/EXP logs
33#
34#LogUploadURL: ${DRTR_LOG_URL}
35LogUploadURL=https://prov.datarouternew.com:8443/internal/logs
36
37#
38# The port number for http as seen within the server
39#
40#IntHttpPort: ${DRTR_NODE_INTHTTPPORT:-8080}
41IntHttpPort=8080
42#
43# The port number for https as seen within the server
44#
45IntHttpsPort=8443
46#
47# The external port number for https taking port mapping into account
48#
49ExtHttpsPort=443
50#
51# The minimum interval between fetches of the dynamic configuration
52# from the provisioning server
53#
54MinProvFetchInterval=10000
55#
56# The minimum interval between saves of the redirection data file
57#
58MinRedirSaveInterval=10000
59#
60# The path to the directory where log files are stored
61#
62LogDir=/opt/app/datartr/logs
63#
64# The retention interval (in days) for log files
65#
66LogRetention=30
67#
68# The path to the directories where data and meta data files are stored
69#
70SpoolDir=/opt/app/datartr/spool
71#
72# The path to the redirection data file
73#
74#RedirectionFile: etc/redirections.dat
75#
76# The type of keystore for https
77#
78KeyStoreType: jks
79#
80# The path to the keystore for https
81#
82KeyStoreFile:/opt/app/datartr/self_signed/keystore.jks
83#
84# The password for the https keystore
85#
86KeyStorePassword=changeit
87#
88# The password for the private key in the https keystore
89#
90KeyPassword=changeit
91#
92# The type of truststore for https
93#
94TrustStoreType=jks
95#
96# The path to the truststore for https
97#
98#TrustStoreFile=/usr/lib/jvm/java-8-oracle/jre/lib/security/cacerts
99TrustStoreFile=/opt/app/datartr/self_signed/cacerts.jks
100#
101# The password for the https truststore
102#
103TrustStorePassword=changeit
104#
105# The path to the file used to trigger an orderly shutdown
106#
107QuiesceFile=etc/SHUTDOWN
108#
109# The key used to generate passwords for node to node transfers
110#
111NodeAuthKey=Node123!
112