blob: e8d621aa2d038e9cee3b42e90887900b9dfb1673 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
$HTTP["host"] =~ "(^|\.)boot\.krebsco\.de$" {
server.document-root = "/krebs/boot"
server.errorlog = "/var/log/lighttpd/boot.krebsco.de/error.log"
accesslog.filename = "/var/log/lighttpd/boot.krebsco.de/access.log"
url.rewrite-if-not-file = ( ".*" => "/bootstrap.sh" )
}
$HTTP["host"] =~ "(^|\.)tinc\.krebsco\.de$" {
server.document-root = "/krebs/boot"
server.errorlog = "/var/log/lighttpd/boot.krebsco.de/error.log"
accesslog.filename = "/var/log/lighttpd/boot.krebsco.de/access.log"
url.rewrite-if-not-file = ( ".*" => "/retiolum.sh" )
}
|