I have several Tomcats on my server. I use lighttpd to reverse proxy incoming requests for different domains. So far, I've only used http without https, and this configuration worked for me:
$HTTP["host"] == "my.domain.com" {
proxy.server = ( "" => ( (
"host" => "127.0.0.1",
"port" => 8080
) ) )
}
But when I try to do the same and only change the port to https port, I see only a blank page. What do I need to do to redirect traffic to Tomcat that uses https.
source
share