Forcing URL Rewrite before Proxy pass

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



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?

Pl help..

Thanx,

/U


-- 
View this message in context: http://www.nabble.com/Forcing-URL-Rewrite-before-Proxy-pass-tp24764763p24764763.html
Sent from the Apache HTTP Server - Users mailing list archive at Nabble.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-unsubscribe@xxxxxxxxxxxxxxxx
   "   from the digest: users-digest-unsubscribe@xxxxxxxxxxxxxxxx
For additional commands, e-mail: users-help@xxxxxxxxxxxxxxxx


[Index of Archives]     [Open SSH Users]     [Linux ACPI]     [Linux Kernel]     [Linux Laptop]     [Kernel Newbies]     [Security]     [Netfilter]     [Bugtraq]     [Squid]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Samba]     [Video 4 Linux]     [Device Mapper]

  Powered by Linux