Re: Reverse proxy deleting ETag header from response

2013-09-12 Thread ochronus
Thank you again for your exhaustive answer. I think I won't drop HAProxy so soon ;) Posted at Nginx Forum: http://forum.nginx.org/read.php?2,242807,242812#msg-242812 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Reverse proxy deleting ETag header from response

2013-09-12 Thread ochronus
Thanks a lot for the quick response! Indeed, I had gzip turned on globally. This is still strange though, is there no way to pass the Etag header from the upstream in this case? Posted at Nginx Forum: http://forum.nginx.org/read.php?2,242807,242810#msg-242810

Reverse proxy deleting ETag header from response

2013-09-12 Thread ochronus
I have a simple config that proxies to/from a django app: upstream django_app{ server 127.0.0.1:4567; } server { listen 80; server_name x; location / { proxy_pass_header Set-Cookie; proxy_pass_header ETag; proxy_pass http://django_app; } } My