blob: 2de84e3d890bcfbac40544864fc21e7a9351fc7d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
//
// HTTP Daemon Plugin Configuration
//
// Enabled the http daemon?
enable_httpd: 1
// WWW Root path
//(The ending slash is required!)
document_root: httpd/
// Request timeout (first request)
// Both of the following are in milliseconds
request_timeout_first: 2500
// Request timeout (consequent requests)
request_timeout_persist: 60000
// Maximum persistent requests
max_persist_request: 32
|