|
Revision 1349, 0.8 kB
(checked in by darix, 2 years ago)
|
|
- merged lighttpd-merge-1.4.x so we finally work in trunk/ ! yeah \o/
|
-
Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 | ======================== |
|---|
| 2 | Enhanced Virtual-Hosting |
|---|
| 3 | ======================== |
|---|
| 4 | |
|---|
| 5 | ------------------ |
|---|
| 6 | Module: mod_evhost |
|---|
| 7 | ------------------ |
|---|
| 8 | |
|---|
| 9 | :Author: Jan Kneschke |
|---|
| 10 | :Date: $Date: 2004/08/29 09:43:49 $ |
|---|
| 11 | :Revision: $Revision: 1.1 $ |
|---|
| 12 | |
|---|
| 13 | :abstract: |
|---|
| 14 | virtual hosting |
|---|
| 15 | |
|---|
| 16 | .. meta:: |
|---|
| 17 | :keywords: lighttpd, virtual hosting |
|---|
| 18 | |
|---|
| 19 | .. contents:: Table of Contents |
|---|
| 20 | |
|---|
| 21 | Description |
|---|
| 22 | =========== |
|---|
| 23 | |
|---|
| 24 | mod_evhost builds the document-root based on a pattern which contains |
|---|
| 25 | wildcards. Those wildcards can represent parts if the submitted hostname |
|---|
| 26 | |
|---|
| 27 | |
|---|
| 28 | :: |
|---|
| 29 | |
|---|
| 30 | %% => % sign |
|---|
| 31 | %0 => domain name + tld |
|---|
| 32 | %1 => tld |
|---|
| 33 | %2 => domain name without tld |
|---|
| 34 | %3 => subdomain 1 name |
|---|
| 35 | %4 => subdomain 2 name |
|---|
| 36 | |
|---|
| 37 | evhost.path-pattern = "/home/www/servers/%3/pages/" |
|---|
| 38 | |
|---|
| 39 | Options |
|---|
| 40 | ======= |
|---|
| 41 | |
|---|
| 42 | evhost.path-pattern |
|---|
| 43 | pattern with wildcards to be replace to build a documentroot |
|---|
| 44 | |
|---|