-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathconfig.json.tmpl
More file actions
33 lines (33 loc) · 695 Bytes
/
config.json.tmpl
File metadata and controls
33 lines (33 loc) · 695 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
{
"applications" : {
"tcms" : {
"group" : "__USER__",
"script" : "__WD__/www/server.psgi",
"type" : "perl",
"user" : "__USER__",
"working_directory" : "__WD__",
"environment": {
"PSGI_ENGINE":"nginx-unit"
},
"limits": {
"requests": 1000
},
"processes": {
"spare": 5,
"max": 20,
"idle_timeout": 30
}
}
},
"listeners" : {
"*:5001" : {
"pass" : "applications/tcms"
}
},
"settings" : {
"http" : {
"body_read_timeout" : 60,
"max_body_size" : 85899345920
}
}
}