-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.yml
47 lines (40 loc) · 1.2 KB
/
config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# H2 DB
database:
driverClass: org.h2.Driver
user: sa
password:
logValidationErrors: false
url: ${DW_DATABASE_URL:-jdbc:h2:./wanthavers-db}
properties:
hibernate.dialect: de.fau.cs.mad.wanthavers.server.misc.FixedH2Dialect
hibernate.hbm2ddl.auto: ${DW_HBM2DDL:-validate}
server:
applicationConnectors:
- keyStorePassword: ${KEYSTOREPW}
keyStorePath: keystore.jks
type: https
port: 8443
validateCerts: false
# trustStorePath: ${JAVA_HOME}/jre/lib/security/cacerts
logging:
level: WARN
loggers:
"de.fau.cs.mad.swipe": DEBUG
# json parsing exceptions
"io.dropwizard.jersey.jackson.JsonProcessingExceptionMapper": DEBUG
# hibernate tracing
# log sql
# "org.hibernate.SQL": DEBUG
# parameters of prepared statements
# "org.hibernate.type": TRACE
# log incoming/outgoing plain requests including json
"org.glassfish.jersey.logging.ServerLoggingFilter": DEBUG
"org.glassfish.jersey.logging.LoggingFeature": DEBUG
appenders:
- type: console
- type: file
currentLogFilename: ./default.log
archive: true
archivedLogFilenamePattern: ./default-%d.log.gz
archivedFileCount: 7
timeZone: UTC