summaryrefslogtreecommitdiff
path: root/tests/condition.conf
diff options
context:
space:
mode:
authorJan Kneschke <jan@kneschke.de>2005-08-08 16:34:49 +0000
committerJan Kneschke <jan@kneschke.de>2005-08-08 16:34:49 +0000
commitd56f19c7d138ff644f33fdafe7dc89a46face82e (patch)
treedd2e23cb2e3648662f53fa93e89b6c2b2aa3bf69 /tests/condition.conf
parentcd4c324ff29e67bb71015ed86cc647d8ae267b50 (diff)
downloadlighttpd-git-d56f19c7d138ff644f33fdafe7dc89a46face82e.tar.gz
checked | to 'else' (merged [316])
git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-merge-1.4.x@524 152afb58-edef-0310-8abb-c4023f1b3aa9
Diffstat (limited to 'tests/condition.conf')
-rw-r--r--tests/condition.conf6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/condition.conf b/tests/condition.conf
index 7e34e493..67eaeaf2 100644
--- a/tests/condition.conf
+++ b/tests/condition.conf
@@ -33,13 +33,13 @@ $HTTP["host"] == "www.example.org" {
server.name = "www.example.org"
url.redirect = ("^" => "/match_1")
}
-| $HTTP["host"] == "test1.example.org" {
+else $HTTP["host"] == "test1.example.org" {
server.document-root = "/tmp/lighttpd/servers/www.example.org/pages/"
server.name = "test1.example.org"
url.redirect = ("^" => "/match_2")
}
# comments
-| $HTTP["host"] == "test2.example.org" {
+else $HTTP["host"] == "test2.example.org" {
server.document-root = "/tmp/lighttpd/servers/www.example.org/pages/"
server.name = "test2.example.org"
url.redirect = ("^" => "/match_3")
@@ -47,7 +47,7 @@ $HTTP["host"] == "www.example.org" {
# comments
-| $HTTP["host"] == "test3.example.org" {
+else $HTTP["host"] == "test3.example.org" {
server.document-root = "/tmp/lighttpd/servers/www.example.org/pages/"
server.name = "test3.example.org"
url.redirect = ("^" => "/match_4")