GSoC Commit #1: LuCId + HTTP-Server
[project/luci.git] / libs / lucid / root / etc / config / lucid
1 config lucid main
2         option pollinterval 15000
3         option threadlimit 25
4         option daemon 1
5         option debug 1
6         list supports tcpserver
7         list supports server
8
9 config DirectoryPublisher webroot
10         option name 'Webserver Share'
11         option physical /www
12         option virtual /
13         option domain ''
14         list read ':lo'
15         list read ':br-lan'
16         list read 'root'
17         
18 config LuciWebPublisher luciweb
19         option name 'LuCI Webapplication'
20         option physical ''
21         list virtual /luci
22         option domain ''
23         list exec ':lo'
24         list exec ':br-lan'
25         list exec 'root'
26         
27 config RPCPublisher     mainrpc
28         option namespace 'luci.lucid.rpc'
29         list export system
30         list exec ':lo'
31         list exec 'root'
32
33 config tcpserver httpd
34         option entrypoint "luci.lucid.http"
35         list supports DirectoryPublisher
36         list supports LuciWebPublisher
37         
38 config tcpserver rpcd
39         option entrypoint "luci.lucid.rpc"
40         list supports RPCPublisher
41
42 config daemon http
43         option slave httpd
44         list address 8080
45         list publisher webroot
46         list publisher luciweb
47         option enabled 1
48         
49 config daemon https
50         option slave httpd
51         list address 4443
52         list publisher webroot
53         list publisher luciweb
54         option enabled 1
55         option encryption enable
56         
57 config daemon rpc
58         option slave rpcd
59         list address 12900
60         list publisher mainrpc
61         option enabled 1