-
Notifications
You must be signed in to change notification settings - Fork 5
/
config.json
27 lines (27 loc) · 1.17 KB
/
config.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
{
"WorkingDirectory" : "/home/brenrigh/projects/github/netsarlacc",
"Daemonize" : false,
"DaemonEnvVar" : "_NETSARLACC_DAEMON",
"PIDFile" : "netsarlacc.pid",
"Workers" : 4,
"Readers" : 512,
"ReaderQueueLen" : 32,
"WorkerQueueLen" : 32,
"MaxClientBytes" : 65535,
"LogDirectory" : ".",
"LogPrefix" : "sinkhole",
"TLSCert" : "server.pem",
"TLSKey" : "server.key",
"ListenList" : [{"Host":"0.0.0.0", "Port":"2525", "Proto":"tcp", "App":"smtp", "TLS":false},
{"Host":"0.0.0.0", "Port":"8080", "Proto":"tcp", "App":"http", "TLS":false},
{"Host":"0.0.0.0", "Port":"8443", "Proto":"tcp", "App":"http", "TLS":true},
{"Host":"0.0.0.0", "Port":"8444", "Proto":"tcp", "App":"http", "TLS":true, "TLSCert":"server.pem", "TLSKey":"server.key"}
],
"UseLocalTime" : false,
"LogClientErrors" : false,
"ClientReadTimeout" : 500,
"ClientWriteTimeout" : 500,
"LogBufferLen" : 4096,
"HTTPTemplate" : "template/HTTPResponse.tmpl",
"SMTPTemplate" : "template/SMTPResponse.tmpl"
}