blob: 365e0159a200d9866ced8d91fd20c2168a8e4ae7 (
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
<webserver>
<user>www-data</user>
<group>www-data</group>
<threads>10</threads>
<!--
<plugin-directory><a c="d">b<e>f</e></a>/usr/lib/webserver/plugins</plugin-directory>
<plugin-directory>/usr/local/lib/webserver/plugins</plugin-directory>
-->
<plugin-directory>plugins</plugin-directory>
<sites>
<site>
<name>antcom.de</name>
<host>lists.antcom.de</host>
<host>antcom.de</host>
<host>www.antcom.de</host>
<host>localhost</host>
<host>ip6-localhost</host>
<host>127.0.0.1</host>
<host>[::1]</host>
<path requested="/">
<plugin>static-files</plugin>
<target>/home/ernie/homepage/test</target>
</path>
<path requested="/webbox">
<plugin>static-files</plugin>
<target>/home/ernie/webbox/html</target>
</path>
<path requested="/webbox/bin">
<plugin>webbox</plugin>
<target>/home/ernie/testbox</target>
<WEBBOX_NAME>Testbox1</WEBBOX_NAME>
<WEBBOX_READONLY>0</WEBBOX_READONLY>
</path>
<certpath>/home/ernie/code/webserver/fullchain.pem</certpath>
<keypath>/home/ernie/code/webserver/privkey.pem</keypath>
</site>
<site>
<name>marx</name>
<host>marx.antcom.de</host>
<host>marx1.antcom.de</host>
<host>localhost</host>
<path requested="/">
<plugin>static-files</plugin>
<target>/home/ernie/homepage/test1</target>
</path>
<certpath>/home/ernie/code/webserver/cert.pem</certpath>
<keypath>/home/ernie/code/webserver/key.pem</keypath>
</site>
<!--
reichwein.it
danielareichwein.de
rolandreichwein.de
kneipenband.com
-->
</sites>
<sockets>
<socket>
<address>127.0.0.1</address>
<port>8080</port>
<protocol>http</protocol>
<!--
<site>antcom.de</site>
<site>reichwein.it</site>
-->
</socket>
<socket>
<address>::1</address>
<port>8080</port>
<protocol>http</protocol>
<!--
<site>antcom.de</site>
<site>reichwein.it</site>
-->
</socket>
<socket>
<address>127.0.0.1</address>
<port>8081</port>
<protocol>https</protocol>
</socket>
<socket>
<address>::1</address>
<port>8081</port>
<protocol>https</protocol>
</socket>
<socket>
<address>127.0.0.1</address>
<port>443</port>
<protocol>https</protocol>
</socket>
</sockets>
</webserver>
|