blob: 8a529e48c0a432d1f74f08a95e2977b4b4ed2c32 (
plain)
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
|
<webserver>
<user>www-data</user>
<group>www-data</group>
<threads>10</threads>
<statisticspath>/var/lib/webserver/stats.db</statisticspath>
<plugin-directory>/usr/lib/webserver/plugins</plugin-directory>
<sites>
<site>
<name>localhost</name>
<host>localhost</host>
<host>[::1]</host>
<path requested="/fcgi">
<plugin>fcgi</plugin>
<target>127.0.0.1:9000</target>
</path>
<path requested="/unix">
<plugin>fcgi</plugin>
<target>/var/lib/webserver/fastcgi/socket</target>
</path>
<path requested="/fastcgi-exe">
<plugin>fcgi</plugin>
<target>/var/lib/webserver/fastcgi/executable</target>
</path>
</site>
</sites>
<sockets>
<socket>
<address>::1</address>
<port>8080</port>
<protocol>http</protocol>
<site>localhost</site>
</socket>
</sockets>
</webserver>
|