Re: [users@httpd] Proxy decodes URLs

2015-02-20 Thread v0id null
adding the nocanon to ProxyPass fixed my problem. thank you! On Fri, Feb 20, 2015 at 11:14 AM, Eric Covener wrote: > On Fri, Feb 20, 2015 at 10:49 AM, v0id null wrote: > > How can I prevent mod_proxy from urldecoding requests? > > > look for "nocanon" in the docs

[users@httpd] Proxy decodes URLs

2015-02-20 Thread v0id null
So lets say I have a simple Vhost: ServerName foobar # proxy a tomcat server ProxyPass /proxy-dir/context http://localhost:8080/context When I make a request to http://foobar/proxy-dir/context/username%40domain Tomcat receives http://localhost:8080/context/username@domain This is