Apache 2.4.10. This use to work: a request from https://share.domain.tld would 
find our Apache server. Apache would pass it to the tomcat app running on the 
same server port 8443. Since going to Apache 2.4.10, this no longer works. Here 
is the vhost:

This rewrites https://share.anydomain.tld<https://share.anydomain.tld/> to our 
share server
     RewriteEngine On
     RewriteCond %{HTTP_HOST} ^share\.
     RewriteCond %{HTTPS} on
     RewriteCond %{REQUEST_URI} !^/share/
     RewriteRule ^/(.*) https://share.domain.tld:8443/share/ [P]

Is there something extra for this to work on Apache 2.4.10?

Sent from my iPhone

Reply via email to