1####################################################################### 2## 3## Simple Virtual hosting 4## ------------------------ 5## 6## http://www.lighttpd.net/documentation/simple-vhost.html 7## 8server.modules += ( "mod_simple_vhost" ) 9 10## If you want name-based virtual hosting add the next three settings and load 11## mod_simple_vhost 12## 13## document-root = 14## virtual-server-root + virtual-server-default-host + virtual-server-docroot 15## or 16## virtual-server-root + http-host + virtual-server-docroot 17## 18simple-vhost.server-root = vhosts_dir + "/" 19simple-vhost.default-host = "default.example.com" 20simple-vhost.document-root = "/htdocs/" 21 22## 23## Print some errors for finding the document-root 24## 25#simple-vhost.debug = "enable" 26 27## 28####################################################################### 29