Apache equivalent of runserver view

Go To StackoverFlow.com

-1

Django provides a runserver that prints out the requests in near-real time in the cli. How would I print out all requests for a website that runs on apache/wsgi?

2012-04-05 02:23
by David542


2

You would run tail -F on the web server's logs, or you would run the web server in the foreground via httpd -X.

2012-04-05 02:26
by Ignacio Vazquez-Abrams
How would I find where the web server's logs are? (Amazon EC2 instance.) There are tons of log files here.. - David542 2012-04-05 02:27
You'd have to check the configuration. But they're usually under /var/log - Ignacio Vazquez-Abrams 2012-04-05 02:29
Ads