On Sun, Aug 23, 2009 at 12:04 PM, pe uni<[email protected]> wrote: > Hi, > I have a scenario to configure apache to handle > (internal app)--http-->apache---https--->(external app) > > My internal app cannot handle SSL and can only handle HTTP connections. > > How do i set up apache to handle such a scenario? > I tried creating a virtual host listening on port 10001 and then used the > rewrite rule to change the url to https. This works on a browser but fails on > my applicatin as it cannot handle the HTTPS traffic.
You need to proxy, via mod_rewrite with the "P" flag or ProxyPass. I assume your "my application" in the final sentence refers to the internal app, not the external app -- otherwise it's a lost cause. -- Eric Covener [email protected] --------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See <URL:http://httpd.apache.org/userslist.html> for more info. To unsubscribe, e-mail: [email protected] " from the digest: [email protected] For additional commands, e-mail: [email protected]
