b34d02a9cf2bb32e6d2b0621e1b5e5f710b3067e
[nonrtric.git] / docker-compose / dmaap-mediator-java / config / application.yaml
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         # Enabling of springboot actuator features. See springboot documentation.
13         include: "loggers,logfile,health,info,metrics,threaddump,heapdump"
14
15 logging:
16   # Configuration of logging
17   level:
18     ROOT: ERROR
19     org.springframework: ERROR
20     org.springframework.data: ERROR
21     org.springframework.web.reactive.function.client.ExchangeFunctions: ERROR
22     org.oran.dmaapadapter: TRACE
23   file:
24     name: /var/log/dmaap-adaptor-service/application.log
25 server:
26    # Configuration of the HTTP/REST server. The parameters are defined and handeled by the springboot framework.
27    # See springboot documentation.
28    port : 8435
29    http-port: 8084
30    ssl:
31       key-store-type: JKS
32       key-store-password: policy_agent
33       key-store: /opt/app/dmaap-adaptor-service/etc/cert/keystore.jks
34       key-password: policy_agent
35       key-alias: policy_agent
36 app:
37   webclient:
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.
41     trust-store-used: false
42     trust-store-password: policy_agent
43     trust-store: /opt/app/dmaap-adaptor-service/etc/cert/truststore.jks
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
48   vardata-directory: /var/dmaap-adaptor-service
49   ics-base-url: http://ics:8083
50   # Location of the component configuration file. The file will only be used if the Consul database is not used;
51   # configuration from the Consul will override the file.
52   configuration-filepath: /opt/app/dmaap-adaptor-service/data/application_configuration.json
53   dmaap-base-url: http://dmaap-mr:3904
54   # The url used to adress this component. This is used as a callback url sent to other components.
55   dmaap-adapter-base-url: https://dmaap-mediator-java:8435
56