blob: 8582bd990519da9860d30c254edec229ea075c2c [file] [log] [blame]
PatrikBuhrd1d08542020-09-11 16:50:37 +02001spring:
2 profiles:
3 active: prod
4 main:
5 allow-bean-definition-overriding: true
6 aop:
7 auto: false
8management:
9 endpoints:
10 web:
11 exposure:
12 include: "loggers,logfile,health,info,metrics,threaddump,heapdump"
13
14logging:
15 level:
16 ROOT: ERROR
17 org.springframework: ERROR
18 org.springframework.data: ERROR
19 org.springframework.web.reactive.function.client.ExchangeFunctions: ERROR
PatrikBuhrebf32112020-09-16 13:17:29 +020020 org.oransc.enrichment: INFO
RehanRaza0591aa32020-09-25 11:58:01 +020021 file:
22 name: /var/log/enrichment-coordinator-service/application.log
PatrikBuhrd1d08542020-09-11 16:50:37 +020023server:
PatrikBuhrd77be452020-09-21 14:30:29 +020024 port : 8434
25 http-port: 8082
PatrikBuhrd1d08542020-09-11 16:50:37 +020026 ssl:
27 key-store-type: JKS
28 key-store-password: policy_agent
29 key-store: /opt/app/enrichment-coordinator-service/etc/cert/keystore.jks
30 key-password: policy_agent
31 key-alias: policy_agent
32app:
33 filepath: /opt/app/enrichment-coordinator-service/data/application_configuration.json
34 webclient:
35 trust-store-used: false
36 trust-store-password: policy_agent
37 trust-store: /opt/app/enrichment-coordinator-service/etc/cert/truststore.jks
38