Hi, On Fri, Apr 12, 2013 at 09:04:00PM -0700, Hong Quach wrote: > I'm having trouble getting haproxy to route multipart requests. Any help > would be appreciated. > > The idea is to route all file uploads to a different server from the main. > However, it doesn't seem to ever match the multipart in the request > headers. I've tried "hdr_beg(Content-Type) multipart" and "path_end > /uploads.json" as well and it still doesn't seem to want to go to my > multipart backend.
I suspect it's only because you don't have "option http-server-close", so the first request only is routed and the next ones are tunnelled to the same server. Willy

