apache2.4になってauthz_core:errorがでる
apache2.4にて下記の構文は変更になったようで下記のように記述すると上記のようにアクセスログにauthz_core:errorと表示され403Forbiddでアクセスが拒否されます。 ———————–
下記、2.2での書き方。
Order deny,allow
Deny from all
Allow from 192.168.0/24
Allow from 10.0.0/24
対応方法としては、2.4からカキ変わっただけなので書き方を修正します。
apacheのドキュメントのサンプルに沿って変更すれば問題なくアクセスできるようになります。
———————-
2.2
Order deny,allow
Deny from all
↓
2.4
Require all denied
———————–
2.2
Order allow,deny
Allow from all
↓
2.4
Require all granted
———————–
2.2
OrderDeny,AllowDeny from all
Allow from example.org
↓
2.4
Require host example.org
————————-
Comment