I\'m trying to run a squid server behind nginx. I configured nginx like this:
server { listen 8080; location / { proxy_pass http://localhos
Try proxy_set_header Request-URI $request_uri;
In reply to your comment, you may also prefer to add:
upstream _squid { server localhost:3128; } server { ... proxy_pass http://_squid/$host$uri; }