Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AH01626: authorization result of Require all granted: granted

I'm running apache 2.4.6 on my site. And I keep seeing this message repeated over and over again in my apache error logs.

[Tue Nov 10 01:42:40.659710 2015] [authz_core:debug] [pid 10727] mod_authz_core.c(809): [client 107.170.139.115:58678] AH01626: authorization result of Require all granted: granted

Here's how the root directory for this site is listed in the VHOST:

    DocumentRoot /var/www/jf-beta
    <Directory /var/www/jf-beta>
      Options  -Indexes  +FollowSymLinks
      AllowOverride All
      Require all granted
    </Directory>

Exactly what is Apache complaining about here? That directory listing seems perfectly reasonable to me! And how do I get it to stop complaining about this error?

like image 251
bluethundr Avatar asked Nov 14 '15 03:11

bluethundr


1 Answers

It is not an error, nor is apache complaining about it. If you look closely at the log statement, it says:

[<date>] [authz_core:debug] [pid 10727] <stuff>

Notice that there's authz_core:debug. It means that you have set the LogLevel directive to debug. Change the value to error or warn and you'll stop seeing the logged statement anymore.

like image 171
hjpotter92 Avatar answered Nov 12 '22 06:11

hjpotter92