Logging http POST in apache

apache-2.2logging

We've got a django webapp running that receives http POST submissions from a variety of clients.

We'd like to be able to have apache log the specific http POSTs coming in before they reach our web app. We see this is an insurance against anything catastrophic being wrong with django.

I've looked at mod-security and its stripped down cousin mod_log_post. mod_log_post seems to have been made in response to the bigness of mod-security being overkill, and I am inclined to agree. The relative newness and lack of community around mod_log_post is a bit of a concern. mod_dumpio seems too much of a blunt instrument in turning on a firehose of too much information. We know the nature and even the URLs in which this POST data is coming in and we want to specifically target logging of those POST events.

Are there other options for apache to accomplish this level of logging?
Are there recommended config options for mod-security or the other mods?

Best Answer

I'm sorry, that mod_log_post is a one-man-show right now, but the feature set is fixed, too. POST data is POST data, there's not much hands and community needed.

Related Topic