My Apache server host few applications something like :
/var/www/A
/var/www/B
I would like to trace access for a specific application, eg. A. Is it possible?
Or should I use 'LogLevel info' and so log all applications into access.log file (then parsing for specific web page) ?
My config for logging is :
..
ErrorLog /var/log/apache2/error.log
LogLevel info
CustomLog /var/log/apache2/access.log combined
..