Jakub Latusek | 2bd138d | 2020-10-21 13:36:29 +0200 | [diff] [blame^] | 1 | {{/* |
Geora Barsky | 4b328b8 | 2018-08-01 12:02:33 -0400 | [diff] [blame] | 2 | # ============LICENSE_START=================================================== |
| 3 | # Copyright (c) 2018 Amdocs |
| 4 | # ============================================================================ |
| 5 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | # you may not use this file except in compliance with the License. |
| 7 | # You may obtain a copy of the License at |
| 8 | # |
| 9 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | # |
| 11 | # Unless required by applicable law or agreed to in writing, software |
| 12 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | # See the License for the specific language governing permissions and |
| 15 | # limitations under the License. |
| 16 | # ============LICENSE_END===================================================== |
| 17 | |
| 18 | # Note that the start.sh script sets the following System Properties |
| 19 | # We provide default values here for testing purposes |
Jakub Latusek | 2bd138d | 2020-10-21 13:36:29 +0200 | [diff] [blame^] | 20 | */}} |
Geora Barsky | 4b328b8 | 2018-08-01 12:02:33 -0400 | [diff] [blame] | 21 | APP_HOME=. |
| 22 | CONFIG_HOME=appconfig |
| 23 | com.att.eelf.logging.path=src/main/resources |
| 24 | com.att.eelf.logging.file=logback.xml |
| 25 | logback.configurationFile=${com.att.eelf.logging.path}/${com.att.eelf.logging.file} |
| 26 | |
| 27 | schemaIngestPropLoc=${CONFIG_HOME}/schemaIngest.properties |
| 28 | |
| 29 | server.port=9501 |
| 30 | server.ssl.client-auth=want |
| 31 | server.ssl.key-store=${CONFIG_HOME}/auth/tomcat_keystore |
| 32 | # Work-around for missing Java certificates file "cacerts". This default value should be overridden. |
| 33 | server.ssl.trust-store=${CONFIG_HOME}/auth/tomcat_keystore |
| 34 | |
| 35 | server.tomcat.max-threads=200 |
| 36 | # The minimum number of threads always kept alive |
| 37 | server.tomcat.min-spare-threads=25 |
| 38 | |
| 39 | # Spring Boot logging |
| 40 | logging.config=${logback.configurationFile} |
| 41 | |
| 42 | consumer.topic.names=poa-rule-validation |
| 43 | publisher.topic.names=poa-audit-result |
| 44 | |
| 45 | topics.properties.location=${CONFIG_HOME}/topics/ |