-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainconfig.json
48 lines (44 loc) · 1.71 KB
/
mainconfig.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"pluginprefix": "",
"log": {
"comments": "You may change the sys and errors logs to files instead of standard output",
"sys-no": "file:./example/logs/xamboo-sys.log",
"errors-no": "file:./example/logs/xamboo-error.log",
"sys": "stdout:",
"errors": "stdout:"
},
"include-comments": "Add the master and admin configs to include array if you are going to install the master and admin sites",
"include-no": [
"./master/config/listeners.json",
"./master/config/hosts.json",
"./admin/config/listeners.json",
"./admin/config/hosts.json"
],
"include": [
"./example/config/engines.json",
"./example/config/listeners.json",
"./example/config/hosts.json"
],
"components": [
{ "name": "log", "source": "built-in" },
{ "name": "stat", "source": "built-in" },
{ "name": "redirect", "source": "built-in" },
{ "name": "auth", "source": "built-in" },
{ "name": "prot", "source": "built-in" },
{ "name": "compress", "source": "built-in" },
{ "name": "minify", "source": "built-in" },
{ "name": "myhandler", "source": "extern", "librarypath":"./example/components/myhandler/", "library": "myhandler.so" },
{ "name": "origin", "source": "built-in" },
{ "name": "fileserver", "source": "built-in" },
{ "name": "cms", "source": "built-in" },
{ "name": "error", "source": "built-in" }
],
"engines": [
{ "name": "redirect", "source": "built-in" },
{ "name": "simple", "source": "built-in" },
{ "name": "library", "source": "built-in" },
{ "name": "template", "source": "built-in" },
{ "name": "language", "source": "built-in" },
{ "name": "wajafapp", "source": "built-in" }
]
}