PatrikBuhr | d1d0854 | 2020-09-11 16:50:37 +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: |
PatrikBuhr | 1da5c88 | 2020-12-07 15:15:08 +0100 | [diff] [blame] | 12 | # Enabling of springboot actuator features. See springboot documentation. |
PatrikBuhr | d1d0854 | 2020-09-11 16:50:37 +0200 | [diff] [blame] | 13 | include: "loggers,logfile,health,info,metrics,threaddump,heapdump" |
| 14 | |
| 15 | logging: |
PatrikBuhr | 1da5c88 | 2020-12-07 15:15:08 +0100 | [diff] [blame] | 16 | # Configuration of logging |
PatrikBuhr | d1d0854 | 2020-09-11 16:50:37 +0200 | [diff] [blame] | 17 | level: |
| 18 | ROOT: ERROR |
| 19 | org.springframework: ERROR |
| 20 | org.springframework.data: ERROR |
| 21 | org.springframework.web.reactive.function.client.ExchangeFunctions: ERROR |
PatrikBuhr | ebf3211 | 2020-09-16 13:17:29 +0200 | [diff] [blame] | 22 | org.oransc.enrichment: INFO |
RehanRaza | 0591aa3 | 2020-09-25 11:58:01 +0200 | [diff] [blame] | 23 | file: |
| 24 | name: /var/log/enrichment-coordinator-service/application.log |
PatrikBuhr | d1d0854 | 2020-09-11 16:50:37 +0200 | [diff] [blame] | 25 | server: |
PatrikBuhr | 1da5c88 | 2020-12-07 15:15:08 +0100 | [diff] [blame] | 26 | # Configuration of the HTTP/REST server. The parameters are defined and handeled by the springboot framework. |
| 27 | # See springboot documentation. |
PatrikBuhr | d77be45 | 2020-09-21 14:30:29 +0200 | [diff] [blame] | 28 | port : 8434 |
ecaiyanlinux | bdeb7d6 | 2020-10-12 22:47:50 +0200 | [diff] [blame] | 29 | http-port: 8083 |
PatrikBuhr | d1d0854 | 2020-09-11 16:50:37 +0200 | [diff] [blame] | 30 | ssl: |
| 31 | key-store-type: JKS |
| 32 | key-store-password: policy_agent |
| 33 | key-store: /opt/app/enrichment-coordinator-service/etc/cert/keystore.jks |
| 34 | key-password: policy_agent |
| 35 | key-alias: policy_agent |
| 36 | app: |
PatrikBuhr | d1d0854 | 2020-09-11 16:50:37 +0200 | [diff] [blame] | 37 | webclient: |
PatrikBuhr | 1da5c88 | 2020-12-07 15:15:08 +0100 | [diff] [blame] | 38 | # Configuration of the trust store used for the HTTP client (outgoing requests) |
| 39 | # The file location and the password for the truststore is only relevant if trust-store-used == true |
| 40 | # Note that the same keystore as for the server is used. |
PatrikBuhr | d1d0854 | 2020-09-11 16:50:37 +0200 | [diff] [blame] | 41 | trust-store-used: false |
| 42 | trust-store-password: policy_agent |
| 43 | trust-store: /opt/app/enrichment-coordinator-service/etc/cert/truststore.jks |
PatrikBuhr | 1da5c88 | 2020-12-07 15:15:08 +0100 | [diff] [blame] | 44 | # Configuration of usage of HTTP Proxy for the southbound accesses. |
| 45 | # The HTTP proxy (if configured) will only be used for accessing NearRT RIC:s |
| 46 | http.proxy-host: |
| 47 | http.proxy-port: 0 |
PatrikBuhr | 768cb95 | 2020-10-29 11:58:43 +0100 | [diff] [blame] | 48 | vardata-directory: /var/enrichment-coordinator-service |
PatrikBuhr | d1d0854 | 2020-09-11 16:50:37 +0200 | [diff] [blame] | 49 | |