As I invetsgate more, as you pointed out, I found Nginx is working as
expected.
It does not apply url encoding to what already has been url encoded. So,
Nginx is good. I mean, great!
We had another proxy before Nginx and it was making the url encoding issue.
Thank you for pointing out for me to s
Hello, thank you so much for your post.
Below is the configuration I'm using. It's pretty much straight forward.
I just want to transfer the massage using "proxy_pass."
server {
listen 8881;
server_name localhost;
location / {
proxy_pass http://111.111.1
Hello, I have a following problem with Nginx. Here is the scenario.
There is a client app that sends request to Nginx Proxy with following
parameter. The parameter is already url encoded.
GET /X/Y/Z.aspx?id=abc%3D%3D
Now, I noticed that Nginx applies url encode to % and make it as %25 when it
red