아파치에서 설정을 해도 안되는 케이스가 있다고 하여 찾아보았다.
<security-constraint>
<display-name>Forbidden</display-name>
<web-resource-collection>
<web-resource-name>Forbidden</web-resource-name>
<url-pattern>/*</url-pattern>
<http-method>PUT</http-method>
<http-method>DELETE</http-method>
<http-method>TRACE</http-method>
<http-method>OPTIONS</http-method>
</web-resource-collection>
<auth-constraint>
<role-name></role-name>
</auth-constraint>
</security-constraint>
web.xml에 추가해주면 됀다. 어떤 사람은 이렇게 해서 적용했다고 하니 참고해야겠다.
'WebServer > Tomcat' 카테고리의 다른 글
Connection reset by peer: socket write error (0) | 2016.07.19 |
---|---|
apache + tomcat 설정 (0) | 2015.10.28 |
CentOS6(x86_64)에서 Tomcat6 설치 (0) | 2011.10.19 |
Linux 톰켓 설정 (0) | 2011.08.03 |
Linux 톰켓 설치 (0) | 2011.08.03 |