summaryrefslogtreecommitdiff
path: root/tests/proxy.conf
diff options
context:
space:
mode:
authorGlenn Strauss <gstrauss@gluelogic.com>2018-12-10 22:35:21 -0500
committerGlenn Strauss <gstrauss@gluelogic.com>2018-12-10 22:36:23 -0500
commit07517ff30af559d419a592b16b62c4c5dde3bb06 (patch)
tree628592564e9cdad85e2824bd7c0c5a1d5c40fd5b /tests/proxy.conf
parentf03e5e239d024965d4c1476b5e02baa06f876269 (diff)
downloadlighttpd-git-07517ff30af559d419a592b16b62c4c5dde3bb06.tar.gz
[tests] some test config cleanup
including limiting use of php in tests to mod-fastcgi.t
Diffstat (limited to 'tests/proxy.conf')
-rw-r--r--tests/proxy.conf124
1 files changed, 1 insertions, 123 deletions
diff --git a/tests/proxy.conf b/tests/proxy.conf
index 72b010ad..0ca8ec78 100644
--- a/tests/proxy.conf
+++ b/tests/proxy.conf
@@ -10,61 +10,15 @@ server.breakagelog = env.SRCDIR + "/tmp/lighttpd/logs/lighttpd.breakage.
server.name = "www.example.org"
server.tag = "Proxy"
-server.dir-listing = "enable"
-
server.modules = (
"mod_rewrite",
"mod_setenv",
- "mod_access",
- "mod_auth",
- "mod_authn_file",
- "mod_status",
- "mod_expire",
- "mod_simple_vhost",
- "mod_redirect",
- "mod_fastcgi",
"mod_proxy",
- "mod_cgi",
- "mod_compress",
- "mod_userdir",
"mod_accesslog",
)
-server.indexfiles = (
- "index.php",
- "index.html",
- "index.htm",
- "default.htm",
-)
-
-######################## MODULE CONFIG ############################
-
accesslog.filename = env.SRCDIR + "/tmp/lighttpd/logs/lighttpd.access.log"
-mimetype.assign = (
- ".png" => "image/png",
- ".jpg" => "image/jpeg",
- ".jpeg" => "image/jpeg",
- ".gif" => "image/gif",
- ".html" => "text/html",
- ".htm" => "text/html",
- ".pdf" => "application/pdf",
- ".swf" => "application/x-shockwave-flash",
- ".spl" => "application/futuresplash",
- ".txt" => "text/plain",
- ".tar.gz" => "application/x-tgz",
- ".tgz" => "application/x-tgz",
- ".gz" => "application/x-gzip",
- ".c" => "text/plain",
- ".conf" => "text/plain",
-)
-
-compress.cache-dir = env.SRCDIR + "/tmp/lighttpd/cache/compress/"
-compress.filetype = (
- "text/plain",
- "text/html",
-)
-
setenv.add-environment = (
"TRAC_ENV" => "foo",
)
@@ -83,82 +37,6 @@ proxy.server = ( "" => (
),
))
-cgi.assign = (
- ".pl" => env.PERL,
- ".cgi" => env.PERL,
-)
-
-userdir.include-user = (
- "jan",
-)
-userdir.path = "/"
-
-auth.backend = "plain"
-auth.backend.plain.userfile = env.SRCDIR + "/tmp/lighttpd/lighttpd.user"
-auth.backend.plain.groupfile = "lighttpd.group"
-
-#auth.backend.ldap.hostname = "localhost"
-#auth.backend.ldap.base-dn = "dc=my-domain,dc=com"
-#auth.backend.ldap.filter = "(uid=$)"
-
-auth.require = (
- "/server-status" => (
- "method" => "digest",
- "realm" => "download archiv",
- "require" => "group=www|user=jan|host=192.168.2.10",
- ),
- "/auth.php" => (
- "method" => "basic",
- "realm" => "download archiv",
- "require" => "user=jan",
- ),
- "/server-config" => (
- "method" => "basic",
- "realm" => "download archiv",
- "require" => "group=www|user=jan|host=192.168.2.10",
- ),
-)
-
-url.access-deny = (
- "~",
- ".inc",
-)
-
-url.redirect = (
- "^/redirect/$" => "http://localhost:2048/",
-)
-
url.rewrite = (
- "^/rewrite/foo($|\?.+)" => "/indexfile/rewrite.php$1",
- "^/rewrite/bar(?:$|\?(.+))" => "/indexfile/rewrite.php?bar&$1",
- "^/rewrite/all(/.*)$" => "/indexfile/rewrite.php?$1",
+ "^/rewrite/all(/.*)$" => "/indexfile/query_string.pl?$1",
)
-
-expire.url = (
- "/expire/access" => "access 2 hours",
- "/expire/modification" => "access plus 1 seconds 2 minutes",
-)
-
-#### status module
-status.status-url = "/server-status"
-status.config-url = "/server-config"
-
-$HTTP["host"] == "vvv.example.org" {
- server.document-root = env.SRCDIR + "/tmp/lighttpd/servers/www.example.org/pages/"
-}
-
-$HTTP["host"] == "zzz.example.org" {
- server.document-root = env.SRCDIR + "/tmp/lighttpd/servers/www.example.org/pages/"
- server.name = "zzz.example.org"
-}
-
-$HTTP["host"] == "no-simple.example.org" {
- server.document-root = env.SRCDIR + "/tmp/lighttpd/servers/123.example.org/pages/"
- server.name = "zzz.example.org"
-}
-
-$HTTP["host"] !~ "(no-simple\.example\.org)" {
- simple-vhost.document-root = "pages"
- simple-vhost.server-root = env.SRCDIR + "/tmp/lighttpd/servers/"
- simple-vhost.default-host = "www.example.org"
-}