up vote 0 down vote favorite
share [g+] share [fb]

Is there any way to get Apache to run a command/program every time a web page is requested? I know I could scan the logs for new entries every minute or so, but can I get Apache to directly call the command? There might be an option like this in one of the configuration files, but if there is I don't know what it is. My server is running Ubuntu 9.04.

link|improve this question

Isn't this what a web application does? Execute a script for every page view? How is this different from a CGI-BIN? – S.Lott May 20 '09 at 14:56
feedback

1 Answer

up vote 2 down vote accepted

You can use the CustomLog directive to pipe the access log to a script or program, which could be useful in your situation. All you would have to do is set up a while loop (or similar structure) on STDIN in the language of your choice and then execute your command from there.

http://httpd.apache.org/docs/2.2/logs.html#piped

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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