slitaz-forge view chub/files/etc/lighttpd/vhosts.conf @ rev 122

chub: add testing vhost
author Christophe Lincoln <pankso@slitaz.org>
date Thu Mar 15 03:51:49 2012 +0100 (2012-03-15)
parents 18b19673ab1d
children f72f67d29c3d
line source
1 # /etc/lighttpd/vhosts.conf : Virtual hosts configuration file.
2 #
4 # chub.slitaz.org
5 $HTTP["host"] =~ "chub\.slitaz\.org$" {
6 server.document-root = "/home/slitaz/www/chub"
7 server.errorlog = "/var/log/lighttpd/chub.slitaz.org-error.log"
8 accesslog.filename = "/var/log/lighttpd/chub.slitaz.org-access.log"
9 cgi.assign = (
10 ".cgi" => "/bin/sh"
11 )
12 }
14 # iso.slitaz.me
15 $HTTP["host"] =~ "iso\.slitaz\.me$" {
16 server.document-root = "/home/slitaz/www/isome"
17 server.errorlog = "/var/log/lighttpd/iso.slitaz.me-error.log"
18 accesslog.filename = "/var/log/lighttpd/iso.slitaz.me-access.log"
19 #index-file.names += ( "isome.cgi" )
20 cgi.assign = (
21 ".cgi" => "/bin/sh"
22 )
23 }