apache httpd의 access controll 방법이 2.4버전에서 변경이 되었습니다.

변경된 방법은 보다 간단하지만 모를 경우 virtualhost설정 시 디렉토리 접근 허용이 되지 않는 문제가 있습니다.

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

Leave a Reply

Your email address will not be published. Required fields are marked *