You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
815 B
Plaintext
29 lines
815 B
Plaintext
![]()
13 years ago
|
#######################################################################
|
||
|
##
|
||
|
## 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"
|
||
|
|
||
|
##
|
||
|
#######################################################################
|