-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqaws.example.json
More file actions
41 lines (41 loc) · 808 Bytes
/
Copy pathqaws.example.json
File metadata and controls
41 lines (41 loc) · 808 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
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"listen": {
"host": "0.0.0.0",
"port": 80
},
"serve": "./public",
"daemon": {
"enabled": false,
"pid_file": null,
"log_file": null
},
"logging": {
"format": "plain",
"access": true
},
"security": {
"dotfiles": "deny_except_well_known"
},
"cache": {
"enabled": true,
"max_file_bytes": 262144,
"max_total_bytes": 16777216,
"revalidate_ms": 1000
},
"headers": {
"Cache-Control": "public, max-age=3600"
},
"http": {
"last_modified": true,
"trailing_slash_redirect": true,
"keep_alive": true,
"sendfile": true,
"etag": true,
"range_requests": true,
"precompressed": true,
"keep_alive_timeout_ms": 5000,
"max_requests_per_connection": 1000,
"max_connections": 1024,
"workers": null
}
}