>> Can I set proxy_read_timeout for only a particular location which is >> passed to apache? >> > > http://wiki.nginx.org/HttpProxyModule#proxy_read_timeout This config causes nginx to serve the request instead of apache: location /for-apache.html { proxy_read_timeout 30m; } Can I pass for-apache.html to apache and wait 30m for it? - Grant