I am currently working on a project based on varnish..

we write vcl and vmod. But the project need check the request body. Buddies, How can I get request body in VCL or vmod with a C function? Help Needed.

link|improve this question
feedback

1 Answer

See http://stackoverflow.com/questions/7381220/varnish-vcl-gurus-how-to-pass-request-body-using-varnish-fetch

Varnish does not operate on POST requests, just passes them through.

link|improve this answer
:Hi, andreas, thanks for your reply. Varnish doesnot cache post request, but it matters not much. I need to get the post body in VCL. Do you you know how to realize it? – Macroideal Nov 11 '11 at 8:40
I didn't find anything on it. Since varnish doesn't do anything with POSTs except for passing them through, speed is not really of concern here. You could re-route the request to another proxy which CAN work with POSTs, like apache filters or squid. – AndreasM Nov 11 '11 at 13:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.