-
Bug
-
Resolution: Done
-
Major
-
None
-
None
Change all httpd 2.2 directives to httpd 2.4
There is a directive Require instead of
Order deny,allow
Deny from all
Allow from 127.0.0.1
for example:
<Location /jkstatus/>
JkMount status
Order deny,allow
Deny from all
Allow from 127.0.0.1
</Location>
should be changed to:
<Location /jkstatus/>
JkMount status
Require ip 127.0.0.1
</Location>