-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
.cfconfig.json
40 lines (40 loc) · 1.19 KB
/
.cfconfig.json
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
{
"cacheDefaultObject":"coldbox",
"debuggingEnabled":true,
"debuggingReportExecutionTimes":false,
"disableInternalCFJavaComponents":false,
"requestTimeoutEnabled":true,
"requestTimeout":"0,0,5,0",
"robustExceptionEnabled":true,
"caches":{
"coldbox":{
"storage":"true",
"type":"RAM",
"custom":{
"timeToIdleSeconds":"1800",
"timeToLiveSeconds":"3600"
},
"class":"lucee.runtime.cache.ram.RamCache",
"readOnly":"false"
}
},
"datasources" : {
"${DB_DATABASE}":{
"bundleName": "${DB_BUNDLENAME}",
"bundleVersion": "${DB_BUNDLEVERSION}",
"class":"${DB_CLASS}",
"connectionLimit":"100",
"connectionTimeout":"1",
"custom":"useUnicode=true&characterEncoding=UTF8&serverTimezone=UTC&useLegacyDatetimeCode=true&autoReconnect=true&useSSL=false&allowPublicKeyRetrieval=true",
"database":"${DB_DATABASE}",
"dbdriver":"${DB_DRIVER:MySQL}",
"dsn":"jdbc:mysql://{host}:{port}/{database}",
"host":"${DB_HOST:127.0.0.1}",
"password":"${DB_PASSWORD}",
"port":"${DB_PORT:3306}",
"username":"${DB_USER:root}",
"storage":"false"
}
},
"whitespaceManagement":"white-space-pref"
}