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.
22 lines
576 B
22 lines
576 B
####################################################################### |
|
## |
|
## Enhanced virtual hosting |
|
## -------------------------- |
|
## |
|
## See https://redmine.lighttpd.net/projects/lighttpd/wiki/Docs_ModEVhost |
|
## |
|
server.modules += ( "mod_evhost" ) |
|
|
|
## |
|
## define a pattern for the host url finding |
|
## %% => % sign |
|
## %0 => domain name + tld |
|
## %1 => tld |
|
## %2 => domain name without tld |
|
## %3 => subdomain 1 name |
|
## %4 => subdomain 2 name |
|
## |
|
evhost.path-pattern = vhosts_dir + "/%3/htdocs/" |
|
|
|
## |
|
#######################################################################
|
|
|