ecaiyanlinux | d202b53 | 2020-05-30 15:17:59 +0200 | [diff] [blame] | 1 | spring: |
| 2 | profiles: |
| 3 | active: prod |
| 4 | main: |
| 5 | allow-bean-definition-overriding: true |
| 6 | aop: |
| 7 | auto: false |
| 8 | management: |
| 9 | endpoints: |
| 10 | web: |
| 11 | exposure: |
| 12 | include: "loggers,logfile,health,info,metrics,threaddump,heapdump" |
| 13 | |
| 14 | logging: |
| 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 |
| 22 | server: |
| 23 | port : 8433 |
| 24 | http-port: 8081 |
| 25 | ssl: |
| 26 | key-store-type: JKS |
| 27 | key-store-password: policy_agent |
RehanRaza | a9a369f | 2020-06-29 12:06:17 +0200 | [diff] [blame] | 28 | key-store: /opt/app/policy-agent/etc/cert/keystore.jks |
ecaiyanlinux | d202b53 | 2020-05-30 15:17:59 +0200 | [diff] [blame] | 29 | key-password: policy_agent |
| 30 | key-alias: policy_agent |
| 31 | app: |
RehanRaza | a9a369f | 2020-06-29 12:06:17 +0200 | [diff] [blame] | 32 | filepath: /opt/app/policy-agent/data/application_configuration.json |
ecaiyanlinux | d202b53 | 2020-05-30 15:17:59 +0200 | [diff] [blame] | 33 | webclient: |
| 34 | trust-store-used: false |
| 35 | trust-store-password: policy_agent |
RehanRaza | a9a369f | 2020-06-29 12:06:17 +0200 | [diff] [blame] | 36 | trust-store: /opt/app/policy-agent/etc/cert/truststore.jks |
ecaiyanlinux | d202b53 | 2020-05-30 15:17:59 +0200 | [diff] [blame] | 37 | |