summaryrefslogtreecommitdiff
path: root/tests/lighttpd.conf
diff options
context:
space:
mode:
authorMarcus Rückert <darix@opensu.se>2006-09-07 11:00:02 +0000
committerMarcus Rückert <darix@opensu.se>2006-09-07 11:00:02 +0000
commit657a024d53b81cb7de37536b406f633aaad1f43e (patch)
treea86b868ab977928eba8e912eee2b77b824d237b6 /tests/lighttpd.conf
parentd5c98732558266f07f11e2b3c58acc7f9d6e7b90 (diff)
downloadlighttpd-git-657a024d53b81cb7de37536b406f633aaad1f43e.tar.gz
- backport symlink patch in hard version to 1.4.11
git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.11-ssl-fixes@1281 152afb58-edef-0310-8abb-c4023f1b3aa9
Diffstat (limited to 'tests/lighttpd.conf')
-rw-r--r--tests/lighttpd.conf12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/lighttpd.conf b/tests/lighttpd.conf
index 79e48c91..1d08bb9b 100644
--- a/tests/lighttpd.conf
+++ b/tests/lighttpd.conf
@@ -147,6 +147,18 @@ $HTTP["host"] == "zzz.example.org" {
server.name = "zzz.example.org"
}
+$HTTP["host"] == "symlink.example.org" {
+ server.document-root = env.SRCDIR + "/tmp/lighttpd/servers/www.example.org/pages/"
+ server.name = "symlink.example.org"
+ server.follow-symlink = "enable"
+}
+
+$HTTP["host"] == "nosymlink.example.org" {
+ server.document-root = env.SRCDIR + "/tmp/lighttpd/servers/www.example.org/pages/"
+ server.name = "symlink.example.org"
+ server.follow-symlink = "disable"
+}
+
$HTTP["host"] == "no-simple.example.org" {
server.document-root = "@SRCDIR@/tmp/lighttpd/servers/123.example.org/pages/"
server.name = "zzz.example.org"