Search code examples
apache

Is there a program to view live HTTP requests under the Apache server?


I'm looking for a program or add on that will be able to show all live incoming requests to a server.


Solution

  • in your terminal, type

    tail -f /var/www/log/apache2/other_vhosts.access.log
    

    this will view live requests.