0

Please help, I am actually not a server admin, I just want to know, my server has some virtualhost, for example:

ServerAdmin arif@dummy-host.example.com
DocumentRoot /var/www/testing/
ServerName cg.blender.com
ErrorLog logs/cg.blender-error_log
CustomLog logs/cg.blender-access_log common

So where is the actual access log file location, /var/www/testing/logs/.. or /var/logs/...

Sorry I am less understood,

Kai
  • 2,529
  • 1
  • 15
  • 24
arifoxs
  • 9
  • 3

2 Answers2

1

You can find the log in the following path

/var/log/http/

For httpd server

Rupali Pemare
  • 540
  • 1
  • 9
  • 24
0

In the configuration file, when paths are relative, they are relative to "ServerRoot" path.

See the documentation:
http://httpd.apache.org/docs/2.4/mod/core.html#serverroot

Daniel Ferradal
  • 2,727
  • 1
  • 13
  • 19