-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.cfconfig.json
134 lines (133 loc) · 4.46 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"adminPassword": "${ADMIN_PASSWORD}",
"requestTimeoutEnabled": true,
"whitespaceManagement": "white-space-pref",
"requestTimeout": "0,0,20,0",
"mailservers" : [
{
"smtp": "mail.dynaprice.com",
"host": "mail.dynaprice.com",
"port": 587,
"username": "sysadmin@dynaprice.com",
"password": "${MAIL_PASSWORD}",
"ssl": false,
"tls": true
}],
"customTagPaths" : [{
"physical":"C:\\Users\\scott\\Projects\\dynaprice\\shared\\customtags",
"primary":"physical",
"archive":""
}],
"CFMappings":{
"/classFiles":{
"INSPECTTEMPLATE":"",
"PHYSICAL":"C:\\Users\\scott\\Projects\\dynaprice\\shared\\classFiles",
"PRIMARY":"physical",
"READONLY":"false"
},
"/clientSites":{
"INSPECTTEMPLATE":"",
"PHYSICAL":"C:\\Users\\scott\\Projects\\dynaprice\\dynaclients",
"PRIMARY":"physical",
"READONLY":"false"
},
"/serverSnips":{
"INSPECTTEMPLATE":"",
"PHYSICAL":"C:\\Users\\scott\\Projects\\dynaprice\\shared\\codeSnips\\Server",
"PRIMARY":"physical",
"READONLY":"false"
},
"/cbilegacy":{
"INSPECTTEMPLATE":"",
"PHYSICAL":"C:\\Users\\scott\\Projects\\dynaprice\\dynaClients\\107\\63160",
"PRIMARY":"physical",
"READONLY":"false"
}
},
"datasources": {
"dp_cat":{
"allow":"511",
"blob":"true",
"class":"com.microsoft.sqlserver.jdbc.SQLServerDriver",
"clob":"true",
"connectionLimit":"100",
"connectionTimeout":"1",
"custom":{
"DATABASENAME":"dp_cat",
"SelectMethod":"direct",
"trustServerCertificate":"true"
},
"database":"dp_cat",
"dbdriver":"${DB_DRIVER}",
"dsn":"jdbc:sqlserver://{host}:{port}",
"host":"${DB_HOST}",
"id":"mssql",
"liveTimeout":"5",
"metaCacheTimeout":"60000",
"paramDelimiter":";",
"paramLeadingDelimiter":";",
"paramSeparator":"=",
"password":"${SA_PASSWORD}",
"port":"${DB_PORT}",
"storage":"false",
"username":"${DB_USER}",
"validate":"false"
},
"dp_logs":{
"allow":"511",
"blob":"true",
"class":"com.microsoft.sqlserver.jdbc.SQLServerDriver",
"clob":"true",
"connectionLimit":"100",
"connectionTimeout":"1",
"custom":{
"DATABASENAME":"dp_logs",
"SelectMethod":"direct",
"trustServerCertificate":"true"
},
"database":"dp_logs",
"dbdriver":"${DB_DRIVER}",
"dsn":"jdbc:sqlserver://{host}:{port}",
"host":"${DB_HOST}",
"id":"mssql",
"liveTimeout":"5",
"metaCacheTimeout":"60000",
"paramDelimiter":";",
"paramLeadingDelimiter":";",
"paramSeparator":"=",
"password":"${SA_PASSWORD}",
"port":"${DB_PORT}",
"storage":"false",
"username":"${DB_USER}",
"validate":"false"
}
},
"debuggingDBEnabled":"true",
"debuggingDumpEnabled":"false",
"debuggingEnabled":"true",
"debuggingExceptionsEnabled":"false",
"debuggingImplicitVariableAccessEnabled":"false",
"debuggingQueryUsageEnabled":"true",
"debuggingTemplates":{
"modern":{
"custom":{
"callStack":"Enabled",
"colorHighlight":"Enabled",
"displayPercentages":"Enabled",
"expression":"Enabled",
"general":"Enabled",
"highlight":"250000",
"minimal":"0",
"sessionSize":"100"
},
"fullname":"lucee-server.admin.debug.Modern",
"id":"ae74ea4e2e865ed3fd60c18a06e69c65",
"iprange":"*",
"label":"modern",
"path":"/lucee-server/admin/debug/Modern.cfc",
"type":"lucee-modern"
}
},
"debuggingTimerEnabled":"true",
"debuggingTracingEnabled":"true",
}