slitaz-forge rev 93

chub: add file vhosts.conf
author Christophe Lincoln <pankso@slitaz.org>
date Thu Mar 08 09:42:28 2012 -0500 (2012-03-08)
parents 0b330079dcc9
children 1d37696d08ad
files chub/files/etc/lighttpd/vhosts.conf
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/chub/files/etc/lighttpd/vhosts.conf	Thu Mar 08 09:42:28 2012 -0500
     1.3 @@ -0,0 +1,12 @@
     1.4 +# /etc/lighttpd/vhosts.conf : Virtual hosts configuration file.
     1.5 +#
     1.6 +
     1.7 +# chub.slitaz.org
     1.8 +$HTTP["host"] =~ "chub\.slitaz\.org$" {
     1.9 +  server.document-root = "/home/slitaz/www/chub"
    1.10 +  server.errorlog = "/var/log/lighttpd/chub.slitaz.org-error.log"
    1.11 +  accesslog.filename = "/var/log/lighttpd/chub.slitaz.org-access.log"
    1.12 +  cgi.assign = (
    1.13 +    ".cgi" => "/bin/sh"
    1.14 +  )
    1.15 +}