-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.cfm
33 lines (33 loc) · 946 Bytes
/
config.cfm
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
<cfscript>
request.fixinator_runner_config = {
"fixinator_api_url": "https://fixinator.example.com/scan/",
"fixinator_api_key": "",
"report_directory": "c:\fixinator\reports\",
"report_format": "pdf",
"email_reports_from": "[email protected]",
"applications": [
{
"name": "my_example_app",
"path": "C:\my_example_app\",
"email_reports_to": "",
"fixinator_config": {
"minConfidence": "high",
"minSeverity": "high",
"ignoreScanners": ["xss"]
}
},
{
"name": "my_other_app",
"path": "C:\my_other_app\",
"email_reports_to": "[email protected],[email protected]",
"fixinator_config": {
"minConfidence": "low",
"minSeverity": "low"
}
}
]
};
</cfscript>
<!---
For fixinator_config options see: https://github.com/foundeo/fixinator?tab=readme-ov-file#fixinatorjson
--->