blob: e9146e011e1a6bc64e2f552e4c7d8a02d90aa0d5 [file] [log] [blame]
ecaiyanlinuxd202b532020-05-30 15:17:59 +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
20 org.oransc.policyagent: INFO
21 file: /var/log/policy-agent/application.log
22server:
23 port : 8433
24 http-port: 8081
25 ssl:
26 key-store-type: JKS
27 key-store-password: policy_agent
RehanRazaa9a369f2020-06-29 12:06:17 +020028 key-store: /opt/app/policy-agent/etc/cert/keystore.jks
ecaiyanlinuxd202b532020-05-30 15:17:59 +020029 key-password: policy_agent
30 key-alias: policy_agent
31app:
RehanRazaa9a369f2020-06-29 12:06:17 +020032 filepath: /opt/app/policy-agent/data/application_configuration.json
ecaiyanlinuxd202b532020-05-30 15:17:59 +020033 webclient:
34 trust-store-used: false
35 trust-store-password: policy_agent
RehanRazaa9a369f2020-06-29 12:06:17 +020036 trust-store: /opt/app/policy-agent/etc/cert/truststore.jks
ecaiyanlinuxd202b532020-05-30 15:17:59 +020037