개발자의 끄적끄적

[apache] 아파치 configuration error: couldn't perform authentication. AuthType not set! 해결방법 본문

개발/was & server

[apache] 아파치 configuration error: couldn't perform authentication. AuthType not set! 해결방법

효벨 2023. 5. 21. 01:00
728x90
반응형

[apache] 아파치 configuration error: couldn't perform authentication. AuthType not set! 해결방법

 

 

apache 를 시작 혹은 재시작했는데,

 

아래와 같은 AuthType 오류가 뜨는 경우가 있습니다!

configuration error: couldn't perform authentication. AuthType not set!

 

그럴때는 해당 document_root 폴더의 권한 설정이 안되어서 그런겁니다!

 

바로 아래처럼 설정해주시면 됩니다!

 

1. apache 버전이 2.4 보다 낮을경우!

Order allow,deny
Allow from all

위 권한을 설정한 예는 아래와 같습니다!

<Directory "/var/www">
    AllowOverride None
    # Allow open access:
    Order allow,deny
Allow from all
</Directory>

 

2. apache 버전이 2.4 이상일 경우!

Require all granted

위 권한을 설정한 예는 아래와 같습니다!

<Directory "/var/www">
    AllowOverride None
    # Allow open access:
    Require all granted
</Directory>

 

참고들 하세요!

반응형
Comments