forked from lucee/extension-hibernate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.cfconfig.json
90 lines (90 loc) · 3.45 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
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
83
84
85
86
87
88
89
90
{
"adminPassword": "commandbox",
"systemErr": "System",
"systemOut": "System",
"applicationTimeout": "1,0,0,0",
"datasources": {
"h2":{
"bundleName": "${H2_BUNDLENAME}",
"bundleVersion": "${H2_BUNDLEVERSION}",
"allowAlter":true,
"allowCreate":true,
"allowDelete":true,
"allowDrop":true,
"allowGrant":true,
"allowInsert":true,
"allowRevoke":true,
"allowSelect":true,
"allowUpdate":true,
"alwaysSetTimeout":"true",
"blob":"false",
"class":"${H2_CLASS}",
"clob":"false",
"connectionLimit":"-1",
"connectionTimeout":"1",
"custom":"mode=MySQL&path=${H2_DBFILE}",
"database":"h2",
"dbdriver":"H2",
"dsn":"jdbc:h2:${H2_DBFILE}/{database};MODE={mode}",
"host":"",
"liveTimeout":"15",
"metaCacheTimeout":"60000",
"port":"-1",
"storage":"false",
"username":"",
"validate":"false"
},
"mssql": {
"bundleName": "${MSSQL_BUNDLENAME}",
"bundleVersion": "${MSSQL_BUNDLEVERSION}",
"class": "${MSSQL_CLASS}",
"connectionLimit": "100",
"connectionTimeout": "1",
"custom": "useUnicode=true&characterEncoding=UTF8&serverTimezone=UTC&useLegacyDatetimeCode=true&autoReconnect=true&useSSL=false&allowPublicKeyRetrieval=true",
"database": "${MSSQL_DATABASE}",
"dbdriver": "MySQL",
"host": "${MSSQL_HOST:127.0.0.1}",
"password": "${MSSQL_PASSWORD}",
"port": "${MSSQL_PORT:1433}",
"storage": "false",
"username": "${MSSQL_USERNAME}",
"validate": "false"
},
"mysql": {
"bundleName": "${MYSQL_BUNDLENAME}",
"bundleVersion": "${MYSQL_BUNDLEVERSION}",
"class": "${MYSQL_CLASS}",
"connectionLimit": "100",
"connectionTimeout": "1",
"custom": "useUnicode=true&characterEncoding=UTF8&serverTimezone=UTC&useLegacyDatetimeCode=true&autoReconnect=true&useSSL=false&allowPublicKeyRetrieval=true",
"database": "${MYSQL_DATABASE}",
"dbdriver": "MySQL",
"host": "${MYSQL_HOST:127.0.0.1}",
"password": "${MYSQL_PASSWORD}",
"port": "${MYSQL_PORT:3306}",
"storage": "false",
"username": "${MYSQL_USERNAME}",
"validate": "false"
},
"postgres": {
"bundleName": "${POSTGRES_BUNDLENAME}",
"bundleVersion": "${POSTGRES_BUNDLEVERSION}",
"class": "${POSTGRES_CLASS}",
"connectionLimit": "100",
"connectionTimeout": "1",
"custom": "useUnicode=true&characterEncoding=UTF8&serverTimezone=UTC&useLegacyDatetimeCode=true&autoReconnect=true&useSSL=false&allowPublicKeyRetrieval=true",
"database": "${POSTGRES_DATABASE}",
"dbdriver": "MySQL",
"host": "${POSTGRES_HOST:127.0.0.1}",
"password": "${POSTGRES_PASSWORD}",
"port": "${POSTGRES_PORT:5432}",
"storage": "false",
"username": "${POSTGRES_USERNAME}",
"validate": "false"
}
},
"inspectTemplate": "always",
"requestTimeout": "0,0,0,50",
"sessionMangement": "yes",
"sessionTimeout": "0,0,30,0"
}