-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.yaml
82 lines (64 loc) · 1.87 KB
/
config.yaml
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
message: This is a message defined in the Realcaller configuration file named as config.yaml.
messageRepetitions: 1
template: Hello, %s!
defaultName: ${DW_DEFAULT_NAME:-Stranger}
# Database Settings
database:
# the name of your JDBC driver
driverClass: org.hsqldb.jdbc.JDBCDriver
# the username
user: sa
# the password
password:
# the JDBC URL
url: jdbc:hsqldb:hsql://localhost
validationQuery: SELECT * FROM INFORMATION_SCHEMA.SYSTEM_TABLES
# any properties specific to your JDBC driver:
properties:
charSet: UTF-8
hibernate.dialect: org.hibernate.dialect.HSQLDialect
# Logging Settings
logging:
# The default level of all loggers. Can be OFF, ERROR, WARN, INFO, DEBUG, TRACE, or ALL.
level: INFO
# Logger-specific levels.
loggers:
# Sets the level for 'com.syan.rest' to INFO
com.syan.rest: INFO
# Log to console and file
appenders:
- type: console
- type: file
threshold: INFO
currentLogFilename: /tmp/profile.log
logFormat: "%-6level [%d{HH:mm:ss.SSS}] [%t] %logger{5} - %X{code} %msg %n"
archivedLogFilenamePattern: /tmp/profile-%d{yyyy-MM-dd}-%i.log.gz
archivedFileCount: 7
timeZone: UTC
#Server Settings
server:
applicationConnectors:
- type: http
port: 8080
- type: https
port: 8443
keyStorePath: example.keystore
keyStorePassword: example
validateCerts: false
adminConnectors:
- type: http
port: 8081
- type: https
port: 8444
keyStorePath: example.keystore
keyStorePassword: example
validateCerts: false
# Sundial Settings
sundial:
thread-pool-size: 10
shutdown-on-unload: true
wait-on-shutdown: false
start-delay-seconds: 0
start-scheduler-on-load: true
global-lock-on-load: false
annotated-jobs-package-name: com.syan.rest.jobs