[Ubuntu] [authz_core:error]

[Ubunto] [authz_core:error]

이번에 아파치 버전을 2.4로 올리면서 만나게 된 에러 입니다.


[Tue Feb 02 09:19:51.345040 2016] [authz_core:error] [pid 11157] [client xxx.xxx.xxx.xxx] AH01630: client denied by server configuration: /home/


기존에 잘 사용하던것을 왜 바꾸는지 알 수 없지만은 배포되는것에 맞춰서 생활을 해야하는것이 사용하는 사람의 입장이지 싶습니다.
아래에 맞게 모두 변경을 해 줘야 할것 같습니다.

<pre class="wp-block-syntaxhighlighter-code">
    # 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
    Order Deny,Allow
    Deny from all
    Allow from example.org
 
    #2.4
    Require host example.org
</pre>

참초 : http://httpd.apache.org/docs/2.4/upgrading.html

    Allow from all

이전글
다음글

답글 남기기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다