blob: 4a9e3af8fd225a0dfb7373d4bb5625df11df5afd (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
<webserver>
<user>www-data</user>
<group>www-data</group>
<statisticspath>/var/lib/webserver/stats.db</statisticspath>
<threads>10</threads>
<plugin-directory>/usr/lib/webserver/plugins</plugin-directory>
<sites>
<site>
<name>localhost</name>
<host>localhost</host>
<path requested="/">
<plugin>static-files</plugin>
<target>/usr/lib/webserver/example</target>
</path>
<path requested="/webbox">
<plugin>webbox</plugin>
<target>/var/lib/webserver/webbox</target>
<WEBBOX_NAME>Testbox1</WEBBOX_NAME>
<WEBBOX_READONLY>0</WEBBOX_READONLY>
</path>
<!--
<certpath>/etc/letsencrypt/live/my-site/fullchain.pem</certpath>
<keypath>/etc/letsencrypt/live/my-site/privkey.pem</keypath>
-->
</site>
</sites>
<sockets>
<socket>
<address>127.0.0.1</address>
<port>80</port>
<protocol>http</protocol>
</socket>
<socket>
<address>::1</address>
<port>80</port>
<protocol>http</protocol>
</socket>
<!--
<socket>
<address>127.0.0.1</address>
<port>443</port>
<protocol>https</protocol>
</socket>
<socket>
<address>::1</address>
<port>443</port>
<protocol>https</protocol>
</socket>
-->
</sockets>
</webserver>
|