diff options
author | euer <root@euer.krebsco.de> | 2012-12-20 02:40:10 +0100 |
---|---|---|
committer | euer <root@euer.krebsco.de> | 2012-12-20 02:40:33 +0100 |
commit | 7c1b02b086a8377ad76a46c277a224150c5b85d6 (patch) | |
tree | 23753720a80a7e1ec0c3f8f3659d5eb5c121fa7b | |
parent | e3c358efb3ac2d1f61ed10875d40e64940c43d71 (diff) |
lighttpd-sample for enterprise curl
-rw-r--r-- | boot/lighttpd.conf | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/boot/lighttpd.conf b/boot/lighttpd.conf new file mode 100644 index 00000000..e8d621aa --- /dev/null +++ b/boot/lighttpd.conf @@ -0,0 +1,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" ) +} |