This repository was archived by the owner on Feb 1, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathconfig.json
More file actions
55 lines (55 loc) · 1.32 KB
/
config.json
File metadata and controls
55 lines (55 loc) · 1.32 KB
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
{
"mongoConfig": {
"host": "127.0.0.1",
"port": 27017,
"database": "hmda"
},
"middleware": {
"static": {
"module": {
"arguments": [ "path:./.build" ]
}
},
"router": {
"module": {
"arguments": [{ "directory": "path:./controllers" }]
}
},
"expressView": {
"priority": 100,
"enabled": true,
"module": {
"name": "engine-munger/lib/expressView"
}
},
"fileNotFound": {
"enabled": true,
"priority": 130,
"module": {
"name":"path:./lib/404",
"method": "fileNotFound"
}
},
"appsec": {
"module": {
"arguments": [
{
"xframe": "SAMEORIGIN",
"p3p": false,
"csp": false
}
]
}
},
"csrf": {
"enabled": true,
"priority": 111,
"route": "/((?!isValidLar))*",
"module": {
"name": "lusca",
"method": "csrf",
"arguments": [ {} ]
}
}
}
}