lighttpd 1.4.x
https://www.lighttpd.net/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
828 B
28 lines
828 B
####################################################################### |
|
## |
|
## Simple Virtual hosting |
|
## ------------------------ |
|
## |
|
## See https://redmine.lighttpd.net/projects/lighttpd/wiki/Docs_ModSimpleVhost |
|
## |
|
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 = 1 |
|
|
|
## |
|
#######################################################################
|
|
|