Re: [users@httpd] Convert mod_jk to mod_proxy

2015-09-03 Thread aparna Puram
Thanks a lot Yann!!:) On Thu, Sep 3, 2015 at 3:51 PM, Yann Ylavic wrote: > On Thu, Sep 3, 2015 at 11:47 AM, aparna Puram > wrote: > > So, This from uri woker properties > > > > > > !/*.png=* works same as ProxyPassMatch \.png$ ! > > > > > > ? > > I don't know mod_jk, but if the purpose is to n

Re: [users@httpd] Convert mod_jk to mod_proxy

2015-09-03 Thread Yann Ylavic
On Thu, Sep 3, 2015 at 11:47 AM, aparna Puram wrote: > So, This from uri woker properties > > > !/*.png=* works same as ProxyPassMatch \.png$ ! > > > ? I don't know mod_jk, but if the purpose is to not forward png requests to the backend then yes (those will be served locally).

Re: [users@httpd] Convert mod_jk to mod_proxy

2015-09-03 Thread aparna Puram
So, This from uri woker properties !/*.png=* works same as ProxyPassMatch \.png$ ! ? On Thu, Sep 3, 2015 at 3:15 PM, aparna Puram wrote: > Sure, Thanks a lot!!:) > > > On Thu, Sep 3, 2015 at 2:08 PM, Yann Ylavic wrote: > >> On Thu, Sep 3, 2015 at 10:36 AM, Yann Ylavic >> wrote: >> > >> >

Re: [users@httpd] Convert mod_jk to mod_proxy

2015-09-03 Thread aparna Puram
Sure, Thanks a lot!!:) On Thu, Sep 3, 2015 at 2:08 PM, Yann Ylavic wrote: > On Thu, Sep 3, 2015 at 10:36 AM, Yann Ylavic wrote: > > > > On Thu, Sep 3, 2015 at 10:13 AM, aparna Puram > wrote: > >> > >> ProxyPass /*.png ! > > > > ProxyPassMatch instead. > > Preferably, > ProxyPassMatch \.png$ !

Re: [users@httpd] Convert mod_jk to mod_proxy

2015-09-03 Thread Yann Ylavic
On Thu, Sep 3, 2015 at 10:36 AM, Yann Ylavic wrote: > > On Thu, Sep 3, 2015 at 10:13 AM, aparna Puram wrote: >> >> ProxyPass /*.png ! > > ProxyPassMatch instead. Preferably, ProxyPassMatch \.png$ ! - To unsubscribe, e-mail: use

Re: [users@httpd] Convert mod_jk to mod_proxy

2015-09-03 Thread Yann Ylavic
Hello, On Thu, Sep 3, 2015 at 10:13 AM, aparna Puram wrote: > > Can I use as following? > > ProxyPass /*.png ! ProxyPassMatch instead. > ProxyPassReverse /*.png ! Not needed (makes no sense). Regards, Yann. - To unsubscribe,

[users@httpd] Convert mod_jk to mod_proxy

2015-09-03 Thread aparna Puram
Hello All, I need to modify the following exclusions in proxypass format. !/*.png=* !/*.gif=* !/*.jpg=* !/*.jpeg=* !/*.htm=* Can I use as following? ProxyPass /*.png ! ProxyPassReverse /*.png ! ProxyPass /*.gif ! ProxyPassReverse /*.gif ! ProxyPass /*.jpg ! ProxyPassReverse /*.jpg ! ProxyPas