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
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