1#######################################################################
2##
3##  Enhanced virtual hosting
4## --------------------------
5##
6## See http://www.lighttpd.net/documentation/evhost.html
7##
8server.modules += ( "mod_evhost" )
9
10##
11## define a pattern for the host url finding
12## %% => % sign
13## %0 => domain name + tld
14## %1 => tld
15## %2 => domain name without tld
16## %3 => subdomain 1 name
17## %4 => subdomain 2 name
18##
19evhost.path-pattern        = vhosts_dir + "/%3/htdocs/"
20
21##
22#######################################################################
23