forked from ColdBox/coldbox-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.cfconfig.json
55 lines (55 loc) · 1.62 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
{
"adminPassword" : "coldbox",
"ajaxDebugWindowEnabled": false,
"debuggingEnabled": false,
"debuggingReportExecutionTimes": false,
"debuggingShowDatabase" : true,
"inspectTemplate":"once",
"maxCFThreads":100,
"requestTimeout":"0,0,0,90",
"robustExceptionEnabled":true,
"systemErr":"System",
"systemOut":"System",
"whitespaceManagement":"white-space-pref",
"caches": {
"default": {
"storage": "false",
"custom": {
"timeToIdleSeconds": "0",
"timeToLiveSeconds": "0"
},
"class": "lucee.runtime.cache.ram.RamCache",
"readOnly": "false"
}
},
"cacheDefaultObject": "default",
"datasources": {
"coolblog": {
"allowAlter":true,
"allowCreate":true,
"allowDelete":true,
"allowDrop":true,
"allowGrant":true,
"allowInsert":true,
"allowRevoke":true,
"allowSelect":true,
"allowUpdate":true,
"blob":"false",
"clob":"false",
"connectionTimeout":"1",
"class":"${DB_CLASS}",
"dbdriver": "MySQL",
"dsn":"jdbc:mysql://{host}:{port}/{database}",
"custom":"useUnicode=true&characterEncoding=UTF8&serverTimezone=UTC&useLegacyDatetimeCode=true&autoReconnect=true&useSSL=false",
"host":"${DB_HOST:127.0.0.1}",
"username": "${DB_USER}",
"password": "${DB_PASSWORD}",
"database": "coolblog",
"port": "${DB_PORT:3306}",
"storage":"false",
"bundleName": "${DB_BUNDLENAME}",
"bundleVersion": "${DB_BUNDLEVERSION}",
"validate":"false"
}
}
}