Displaying 1 result from an estimated 1 matches for "simons_app".
2005 Nov 30
1
[lighttpd] proxy.server and url.rewrite-once
...erver.modules = ( "mod_proxy", "mod_rewrite" )
server.port = 80
server.pid-file = "/var/run/lighttpd.pid"
server.errorlog = "/var/log/lighttpd-err.log"
server.document-root = "/var/www/htdocs/"
$HTTP["url"] =~ "^/simons_app" {
url.rewrite-once = ( "" => "" ) # <= WHAT SHOULD I WRITE HERE?
proxy.server = ( "" => ( ( "host" => "10.0.0.12",
"port" => 3000 )
)
)
}
$HT...