> #This rewrites 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]

That will forward any https request with a URI *not* starting with
/share/ using mod_proxy. If there are no ProxyPass directives, it will
not use persistent backend connections though.

>       JkMount /share/* worker1

And this will use a worker named worker1 to forward anything with a URI
starting with /share/ using mod_jk.

Neither will work as long as your request don't actually hit the Apache
web server.

OK, so netstat does not show apache listening on 443. Here is listen.conf:

Listen 80


<IfDefine SSL>
    <IfDefine !NOSSL>
        <IfModule mod_ssl.c>

            Listen 443

        </IfModule>
    </IfDefine>

mod_ssl is loaded on apache
</IfDefine>
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to