On Wed, Jul 09, 2008 at 11:08:58AM +0200, Tit Petric wrote:
> Does nginx support forwarding specific request types (POST request only  
> for example), to a specific backend?
yes
if ($request_method = POST) {
	proxy_pass http://my_post_backend;
	break;
}