My tomcat serves 2 sites
ROOT -> Main-site
/mobile -> dedicated mobile website
I've configured lighttpd to serve as a proxy
$HTTP["host"] =~ "www.my-site.at" {
proxy.server = ( "" => (
( "host" => "127.0.0.1",
"port" => 8080
)
))
}
How can I tell lighttpd to use http://127.0.0.1:8080/mobile for m.my-site.at? Or do I have to configure a second tomcat and deploy the mobile site under ROOT?
Thank you