아파치 2.4 버전으로 업데이트 후 접근 제한 방식이 변경되었습니다.
전체 접근 제한
2.2 configuration:
Order deny,allow Deny from all
2.4 configuration:
Require all denied
전체 접근 허용
2.2 configuration:
Order allow,deny Allow from all
2.4 configuration:
Require all granted
특정 도메인에 대한 접근 허용
2.2 configuration:
Order Deny,Allow Deny from all Allow from example.org
2.4 configuration:
Require host example.org
위처럼 2.2 에서 2.4버전으로 버전이 변경이 되면서 설정 방식도 약간의 변경이 발생하였습니다.
출처: http://httpd.apache.org/docs/2.4/upgrading.html
[polldaddy rating=”7739789″]