blob: 4a4c83e4a590d30bc26eab4ae3becdad676f38b9 [file] [log] [blame]
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -04001# will be used as entry in DB to say SITE OFF/ON for healthcheck
2# MSO Properties go here
3
4server:
5 port: 8080
6 tomcat:
7 max-threads: 50
8
9mso:
10 logPath: ./logs/openstack
11 site-name: localDevEnv
12 async:
13 core-pool-size: 50
14 max-pool-size: 50
15 queue-capacity: 500
16
17# CatalogDB
18spring:
19 datasource:
20 url: jdbc:mariadb://${DB_HOST}:${DB_PORT}/catalogdb
21 username: ${DB_USERNAME}
22 password: ${DB_PASSWORD}
23 driver-class-name: org.mariadb.jdbc.Driver
24 dbcp2:
25 initial-size: 5
26 max-total: 20
27 validation-query: select 1
28 test-on-borrow: true
29 jpa:
30 show-sql: true
31 hibernate:
32 dialect: org.hibernate.dialect.MySQL5Dialect
33 ddl-auto: validate
34 naming-strategy: org.hibernate.cfg.ImprovedNamingStrategy
35 enable-lazy-load-no-trans: true
36
37
38#Actuator
39management:
40 context-path: /manage
Benjamin, Max (mb388a)a81aef22018-08-13 09:48:57 -040041
42flyway:
43 outOfOrder: true
44 ignoreMissingMigrations: true