summaryrefslogtreecommitdiff
path: root/tests/proxy.conf
diff options
context:
space:
mode:
authorMarcus Rückert <darix@opensu.se>2006-10-05 00:09:51 +0000
committerMarcus Rückert <darix@opensu.se>2006-10-05 00:09:51 +0000
commitb8df99f3db00f569f11742a746e7093b45293127 (patch)
tree1d5c3621df10cfc976c2b25fc192b8c2a2d200f9 /tests/proxy.conf
parentbb24041f92343fd61b9cb00e9970a4f1975101a1 (diff)
downloadlighttpd-git-b8df99f3db00f569f11742a746e7093b45293127.tar.gz
- a few more whitespace cleanups
git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@1374 152afb58-edef-0310-8abb-c4023f1b3aa9
Diffstat (limited to 'tests/proxy.conf')
-rw-r--r--tests/proxy.conf36
1 files changed, 18 insertions, 18 deletions
diff --git a/tests/proxy.conf b/tests/proxy.conf
index 473ae06b..2d1ab0d3 100644
--- a/tests/proxy.conf
+++ b/tests/proxy.conf
@@ -16,16 +16,16 @@ server.dir-listing = "enable"
#server.event-handler = "linux-rtsig"
#server.modules.path = ""
-server.modules = (
+server.modules = (
"mod_rewrite",
"mod_setenv",
- "mod_access",
+ "mod_access",
"mod_auth",
# "mod_httptls",
- "mod_status",
+ "mod_status",
"mod_expire",
"mod_simple_vhost",
- "mod_redirect",
+ "mod_redirect",
# "mod_evhost",
# "mod_localizer",
"mod_fastcgi",
@@ -33,9 +33,9 @@ server.modules = (
"mod_cgi",
"mod_compress",
"mod_userdir",
- "mod_accesslog" )
+ "mod_accesslog" )
-server.indexfiles = ( "index.php", "index.html",
+server.indexfiles = ( "index.php", "index.html",
"index.htm", "default.htm" )
@@ -44,7 +44,7 @@ server.indexfiles = ( "index.php", "index.html",
accesslog.filename = env.SRCDIR + "/tmp/lighttpd/logs/lighttpd.access.log"
-mimetype.assign = ( ".png" => "image/png",
+mimetype.assign = ( ".png" => "image/png",
".jpg" => "image/jpeg",
".jpeg" => "image/jpeg",
".gif" => "image/gif",
@@ -68,19 +68,19 @@ setenv.add-request-header = ( "FOO" => "foo")
setenv.add-response-header = ( "BAR" => "foo")
proxy.debug = 1
-proxy.server = ( "" => (
- "grisu" => (
+proxy.server = ( "" => (
+ "grisu" => (
"host" => "127.0.0.1",
"port" => 2048,
)
)
)
-
+
cgi.assign = ( ".pl" => "/usr/bin/perl",
".cgi" => "/usr/bin/perl",
".py" => "/usr/bin/python" )
-
+
userdir.include-user = ( "jan" )
userdir.path = "/"
@@ -95,22 +95,22 @@ auth.backend.ldap.hostname = "localhost"
auth.backend.ldap.base-dn = "dc=my-domain,dc=com"
auth.backend.ldap.filter = "(uid=$)"
-auth.require = ( "/server-status" =>
- (
+auth.require = ( "/server-status" =>
+ (
"method" => "digest",
"realm" => "download archiv",
# "require" => ("group=www", "user=jan", "host=192.168.2.10")
"require" => "group=www|user=jan|host=192.168.2.10"
),
- "/auth.php" =>
- (
+ "/auth.php" =>
+ (
"method" => "basic",
"realm" => "download archiv",
# "require" => ("group=www", "user=jan", "host=192.168.2.10")
"require" => "user=jan"
),
- "/server-config" =>
- (
+ "/server-config" =>
+ (
"method" => "basic",
"realm" => "download archiv",
# "require" => ("group=www", "user=jan", "user=weigon", "host=192.168.2.10")
@@ -125,7 +125,7 @@ url.redirect = ( "^/redirect/$" => "http://localhost:2048/" )
url.rewrite = ( "^/rewrite/foo($|\?.+)" => "/indexfile/rewrite.php$1",
"^/rewrite/bar(?:$|\?(.+))" => "/indexfile/rewrite.php?bar&$1" )
-expire.url = ( "/expire/access" => "access 2 hours",
+expire.url = ( "/expire/access" => "access 2 hours",
"/expire/modification" => "access plus 1 seconds 2 minutes")
#cache.cache-dir = "/home/weigon/wwwroot/cache/"