Hi,
i would like to redirect all request with file uploads to a special backend.
currenty i use something like
--
HeadRequire "Content-Type: *multipart/form-data.*"
HeadRequire "Content-Length: *[0-9]{5,}.*"
--
but this doesn't work for small files. has anyone a better idea on how to solve
this problem?
thanks,
corin
Re: [Pound Mailing List] redirect all request with file uploads to a specifiy backend "Sergio Freire" <etfreire(at)ua.pt>
Hi Corin,
maybe I can help.. that doesn't work for small files because you are forcing
the content-length header to have at least 5 digits in your regular
expression.. correct?
Regards,
Sergio Freire
----- Original Message -----
From: "Corin Langosch" <corinl(at)gmx.de>
To: <pound(at)apsis.ch>
Sent: Monday, May 22, 2006 7:46 PM
Subject: [Pound Mailing List] redirect all request with file uploads to a
specifiy backend
[...]
[...]