On Fri, Jul 31, 2009 at 8:20 PM, /U<uma...@comcast.net> wrote:
>
> Apache: 2.2.0
>
> I need to
>   a) require SSL on requests to /secure (i.e., http://server/secure ->
> https://server/secure)
>   b) and as the second step, offload (proxy) https://server/secure to
> http://server:8080/secure
>
> I thought I could accomplish (a) using mod_rewrite and (b) using Proxy pass
> as follows:
>
> RewriteEngine On
> RewriteLog  "/tmp/http.log"
> RewriteLogLevel 9
> RewriteCond %{SERVER_PORT}!443$
> RewriteRule ^/secure(.*) https://%{HTTP_HOST}:443/secure$1 [R=301,L]
>
> <Proxy balancer://clusterx>
> BalancerMember http://localhost:8080/
> </Proxy>
> ProxyPass /secure balancer://clusterx/
>
> However, this does not work. A request http://server/secure is directly
> forwarded to
> http://server:8080/secure
>
>
> Is there anyway to force Rewrite before proxy pass?

Use the "P" flag in rewrite instead of ProxyPass, and you can control
the flow directly.



-- 
Eric Covener
cove...@gmail.com

---------------------------------------------------------------------
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: users-unsubscr...@httpd.apache.org
   "   from the digest: users-digest-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-h...@httpd.apache.org

Reply via email to