Annotation of embedaddon/lighttpd/tests/mod-extforward.conf, revision 1.1.1.1

1.1       misho       1: debug.log-request-handling   = "enable"
                      2: debug.log-response-header   = "disable"
                      3: debug.log-request-header   = "disable"
                      4: 
                      5: server.document-root         = env.SRCDIR + "/tmp/lighttpd/servers/www.example.org/pages/"
                      6: 
                      7: ## bind to port (default: 80)
                      8: server.port                 = 2048
                      9: 
                     10: ## bind to localhost (default: all interfaces)
                     11: server.bind                = "localhost"
                     12: server.errorlog            = env.SRCDIR + "/tmp/lighttpd/logs/lighttpd.error.log"
                     13: server.breakagelog         = env.SRCDIR + "/tmp/lighttpd/logs/lighttpd.breakage.log"
                     14: server.name                = "www.example.org"
                     15: server.tag                 = "Apache 1.3.29"
                     16: 
                     17: server.modules = (
                     18:        "mod_cgi",
                     19:        "mod_extforward",
                     20: )
                     21: 
                     22: ######################## MODULE CONFIG ############################
                     23: 
                     24: mimetype.assign = (
                     25:        ".html" => "text/html",
                     26: )
                     27: 
                     28: cgi.assign = (
                     29:        ".pl" => env.PERL,
                     30: )
                     31: 
                     32: extforward.forwarder = (
                     33:        "127.0.0.1" => "trust",
                     34:        "127.0.30.1" => "trust",
                     35: )

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>