Senin, 05 November 2018

How to Fix Apache AH01630 Client Denied by Server Configuration Error

  Tidak ada komentar
If you are using Apache 2.4 and above, you might get the following error message. This might specifically start happening after you’ve upgraded from an older version of apache.
For example, after you’ve upgraded from Apache 2.2 to a latest version, you might start getting the following error message.
AH01630: client denied by server configuration: /home/myapp/server/
Open your Apache configuration, commonly httpd.conf and find the directory setting, make sure the allowed path is match with what you web app directory accessed
<Directory "/home/myapp/server">
    Options Indexes MultiViews
    AllowOverride None
    Require all granted
</Directory>
For more information : https://wiki.apache.org/httpd/ClientDeniedByServerConfiguration

Tidak ada komentar :

Posting Komentar