caching-proxy

How to set up Nginx as a caching reverse proxy?

I heard recently that Nginx has added caching to its reverse proxy feature. I looked around but couldn't find much info about it. I want to set up Nginx as a caching reverse proxy in front of Apache/Django: to have Nginx proxy requests for some (but not all) dynamic pages to Apache, then cache the generated pages and serve subsequent re...

Caching proxy with authenticated REST requests

Consider following scenario: I have RESTful URL /articles that returns list of articles user provide his credentials using Authorization HTTP header on each request articles may vary from user to user based on his privileges Its possible to use caching proxy, like Squid, for this scenario? Proxy will see only URL /articles so it may ...