Containerization feature of SO
[so.git] / adapters / mso-vfc-adapter / src / main / resources / application.yaml
1 logging:
2   path: logs
3
4 # H2
5 spring:
6   datasource:
7     url: jdbc:h2:mem:test;DB_CLOSE_DELAY=-1;
8     username: sa
9     password: sa
10     driver-class-name: org.h2.Driver
11     intialize: true
12   h2:
13     console:
14       enabled: true
15       path: /h2
16
17 server:
18     port: 8080
19     tomcat:
20         max-threads: 50
21 mso:
22   site-name: localSite
23
24 #Actuator
25 management:
26   security:
27     enabled: false
28     basic:
29       enabled: false
30   metrics:
31     se-global-registry: false
32     export:
33       prometheus:
34         enabled: true # Whether exporting of metrics to Prometheus is enabled.
35         step: 1m # Step size (i.e. reporting frequency) to use.
36
37