-
-
Notifications
You must be signed in to change notification settings - Fork 86
/
.cfconfig.json
57 lines (57 loc) · 1.77 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"systemErr":"System",
"systemOut":"System",
"componentCacheEnabled":false,
"saveClassFiles":false,
"robustExceptionEnabled":true,
"debuggingEnabled" : false,
"adminPassword" : "contentbox",
"requestTimeout": "0,0,10,0",
"thistimezone":"UTC",
"debuggingReportExecutionTimes": false,
"whitespaceManagement":"white-space-pref",
"postParametersLimit" : 200,
"cacheDefaultObject":"contentbox",
"caches":{
"contentbox":{
"storage":"true",
"type":"RAM",
"custom":{
"timeToIdleSeconds":"1800",
"timeToLiveSeconds":"3600"
},
"class":"lucee.runtime.cache.ram.RamCache",
"readOnly":"false"
}
},
"datasources" : {
"contentbox":{
"allowAlter":true,
"allowCreate":true,
"allowDelete":true,
"allowDrop":true,
"allowGrant":true,
"allowInsert":true,
"allowRevoke":true,
"allowSelect":true,
"allowUpdate":true,
"blob":"true",
"bundleName": "${DB_BUNDLENAME}",
"bundleVersion": "${DB_BUNDLEVERSION}",
"class":"${DB_CLASS}",
"clob":"true",
"connectionLimit":"100",
"connectionTimeout":"1",
"custom":"useUnicode=true&characterEncoding=UTF8&serverTimezone=UTC&useLegacyDatetimeCode=true&autoReconnect=true&useSSL=false&allowPublicKeyRetrieval=true",
"database":"${DB_DATABASE:contentbox}",
"dbdriver":"${DB_DRIVER}",
"host":"${DB_HOST:127.0.0.1}",
"metaCacheTimeout":"60000",
"password":"${DB_PASSWORD}",
"port":"${DB_PORT:3306}",
"storage":"false",
"username":"${DB_USER}",
"validate":"false"
}
}
}