Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

설정에 AllowEncodedSlashes NoDecode  을 추가하라는데 NoDecode 옵션은 아파치 2.2.22 이상부터 가능하나 CentOS 6 의 아파치는 2.2.15 이므로 사용할 수 없다.

대신 아래처럼 AllowEncodedSlashes on 으로 설정해도 에러가 사라진다RHEL 이나 CentOS 6 을 사용한다면 해당 에러를 무시해야 할 것 같다.

Code Block
<VirtualHost *:80>
   ProxyRequests Off
    ProxyPreserveHost On
    <Proxy *>
        Order deny,allow
        Allow from all
    </Proxy>
    AllowEncodedSlashes on
    ProxyPass / http://localhost:8080/ nocanon
    ProxyPassReverse / http://localhost:8080/
</VirtualHost>

...