rewrite proxy flag set problem

Igor Sysoev igor at sysoev.ru
Tue Mar 27 08:05:36 UTC 2012


On Tue, Mar 27, 2012 at 02:52:30AM -0400, niraj wrote:
> Hi
> 
>     As I read and from that I understand, Proxypass in apache not used
> for regular express.
> 
>  mostly for  regular expression in apache used the rewriterule
> 
>  http://httpd.apache.org/docs/current/mod/mod_rewrite.html  
> 
> The mod_rewrite module uses a rule-based rewriting engine, based on a
> PCRE regular-expression parser, to rewrite requested URLs on the fly  
> 
> 
> Please correct me If I wrong.

Yes, Apache did not support regexes ProxyPass.
However, in your case regexes are not needed:

   ProxyPass  /auction   http://192.168.1.210/

or

   <Location /auction>
       ProxyPass  http://192.168.1.210/
   </Locaiton>


-- 
Igor Sysoev



More information about the nginx mailing list