diff options
author | Arno Töll <arno@debian.org> | 2012-11-21 23:03:39 +0100 |
---|---|---|
committer | Arno Töll <arno@debian.org> | 2012-11-21 23:03:39 +0100 |
commit | ec2cb646eff482dfe32955d01781b01211b0a77c (patch) | |
tree | 64dc98e42bb7a676769441858ea37d0c61c1267c /tests/var-include.conf | |
parent | 19e84cab62acb124d75fd8e6b8da00c00f5d26b3 (diff) | |
download | lighttpd-8fdf64de7a2149910aefe5bd35988bd6438ed039.tar.gz |
Imported Upstream version 1.4.12~20060907upstream/1.4.12_20060907
Diffstat (limited to 'tests/var-include.conf')
-rw-r--r-- | tests/var-include.conf | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/var-include.conf b/tests/var-include.conf index 00595ba..397c91d 100644 --- a/tests/var-include.conf +++ b/tests/var-include.conf @@ -2,15 +2,15 @@ debug.log-request-handling = "enable" debug.log-condition-handling = "enable" -server.document-root = "@SRCDIR@/tmp/lighttpd/servers/www.example.org/pages/" -server.pid-file = "@SRCDIR@/tmp/lighttpd/lighttpd.pid" +server.document-root = env.SRCDIR + "/tmp/lighttpd/servers/www.example.org/pages/" +server.pid-file = env.SRCDIR + "/tmp/lighttpd/lighttpd.pid" ## bind to port (default: 80) server.port = 2048 ## bind to localhost (default: all interfaces) server.bind = "localhost" -server.errorlog = "@SRCDIR@/tmp/lighttpd/logs/lighttpd.error.log" +server.errorlog = env.SRCDIR + "/tmp/lighttpd/logs/lighttpd.error.log" server.name = "www.example.org" server.tag = "Apache 1.3.29" @@ -21,19 +21,19 @@ server.modules = ( "mod_redirect", ######################## MODULE CONFIG ############################ -accesslog.filename = "@SRCDIR@/tmp/lighttpd/logs/lighttpd.access.log" +accesslog.filename = env.SRCDIR + "/tmp/lighttpd/logs/lighttpd.access.log" mimetype.assign = ( ".html" => "text/html" ) url.redirect = ("^" => "/default") $HTTP["host"] == "www.example.org" { - server.document-root = "@SRCDIR@/tmp/lighttpd/servers/www.example.org/pages/" + server.document-root = env.SRCDIR + "/tmp/lighttpd/servers/www.example.org/pages/" server.name = "www.example.org" url.redirect = ("^" => "/redirect") } $HTTP["host"] == "test.example.org" { - server.document-root = "@SRCDIR@/tmp/lighttpd/servers/www.example.org/pages/" + server.document-root = env.SRCDIR + "/tmp/lighttpd/servers/www.example.org/pages/" server.name = "test.example.org" var.myvar = "good" var.one = 1 |