forked from bocajspear1/honeyhttpd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
28 lines (28 loc) · 795 Bytes
/
Copy pathconfig.json
File metadata and controls
28 lines (28 loc) · 795 Bytes
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
{
"loggers": {
"ElasticSearchLogger": {
"active": false,
"config": {
"server": "http://USERNAME:PASSWORD@ELASTICSEARCH_SERVER",
"verify": false
}
},
"FileLogger": {
"active": true
},
"S3Logger": {
"active": false,
"config": {
"key_id": "",
"key": "",
"bucket": ""
}
}
},
"servers" : [
{"handler": "ExchangeOwa", "mode": "https", "port": 443, "domain": "example.com", "timeout": 10, "cert_path": "server.pem"},
{"handler": "ExchangeOwa", "mode": "http", "port": 80, "domain": "example.com", "timeout": 10}
],
"user": "nobody",
"group": "nogroup"
}