Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 668e1e22f48fd88415806997f1008fbc > files > 21

lighttpd-1.4.33-4.mga4.x86_64.rpm

#######################################################################
##
##  Simple Virtual hosting 
## ------------------------ 
##
## http://www.lighttpd.net/documentation/simple-vhost.html
##
server.modules += ( "mod_simple_vhost" )

##  If you want name-based virtual hosting add the next three settings and load
##  mod_simple_vhost
##
## document-root =
##   virtual-server-root + virtual-server-default-host + virtual-server-docroot
## or
##   virtual-server-root + http-host + virtual-server-docroot
##
simple-vhost.server-root   = vhosts_dir + "/"
simple-vhost.default-host  = "default.example.com"
simple-vhost.document-root = "/htdocs/"

##
## Print some errors for finding the document-root
##
#simple-vhost.debug = "enable"

##
#######################################################################