Migrate from DW to Springboot
[holmes/rule-management.git] / rulemgt-standalone / src / main / assembly / conf / application.yaml
1 server:
2   port: 9101
3   servlet:
4     context-path: /api/holmes-rule-mgmt/v1
5   ssl:
6     key-store: /opt/onap/conf/holmes.keystore
7     key-store-password: holmes
8     #PKCS12
9     key-store-type: JKS
10
11 logging:
12   config: classpath:logback-spring.xml
13
14 spring:
15   application:
16     name: Holmes Rule Management
17   datasource:
18     dirver-class-name: org.postgresql.Driver
19     url: jdbc:postgresql://localhost:5432/holmes
20     username: holmes
21     password: holmespwd
22   mvc:
23     throw-exception-if-no-handler-found: true