blob: c0ddfb57b14b91605ac67dd6c18f9c4267668f34 [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
28 key-store: classpath:keystore.jks
29 key-password: policy_agent
30 key-alias: policy_agent
31app:
32 filepath: /opt/app/policy-agent/config/application_configuration.json
33 webclient:
34 trust-store-used: false
35 trust-store-password: policy_agent
36 trust-store: classpath:keystore.jks
37