2006-09-07 11:11:30 +00:00
|
|
|
server.document-root = env.SRCDIR + "/tmp/lighttpd/servers/www.example.org/pages/"
|
2005-05-10 18:48:59 +00:00
|
|
|
|
|
|
|
## bind to port (default: 80)
|
|
|
|
server.port = 2050
|
|
|
|
|
|
|
|
## bind to localhost (default: all interfaces)
|
|
|
|
server.bind = "localhost"
|
2006-09-07 11:11:30 +00:00
|
|
|
server.errorlog = env.SRCDIR + "/tmp/lighttpd/logs/lighttpd.error.log"
|
2009-07-01 16:16:40 +00:00
|
|
|
server.breakagelog = env.SRCDIR + "/tmp/lighttpd/logs/lighttpd.breakage.log"
|
2005-05-10 18:48:59 +00:00
|
|
|
server.name = "www.example.org"
|
2005-06-28 17:25:35 +00:00
|
|
|
server.tag = "Proxy"
|
2005-05-10 18:48:59 +00:00
|
|
|
|
2015-08-22 20:51:08 +00:00
|
|
|
server.modules = (
|
|
|
|
"mod_rewrite",
|
|
|
|
"mod_proxy",
|
|
|
|
"mod_accesslog",
|
|
|
|
)
|
|
|
|
|
|
|
|
accesslog.filename = env.SRCDIR + "/tmp/lighttpd/logs/lighttpd.access.log"
|
|
|
|
|
2005-08-17 09:52:16 +00:00
|
|
|
proxy.debug = 1
|
2015-08-22 20:51:08 +00:00
|
|
|
proxy.server = ( "" => (
|
|
|
|
"grisu" => (
|
|
|
|
"host" => "127.0.0.1",
|
|
|
|
"port" => 2048,
|
|
|
|
),
|
|
|
|
))
|
|
|
|
|
|
|
|
url.rewrite = (
|
2018-12-11 03:35:21 +00:00
|
|
|
"^/rewrite/all(/.*)$" => "/indexfile/query_string.pl?$1",
|
2015-08-22 20:51:08 +00:00
|
|
|
)
|