1. 톰캣에서 기본 docBase 이외에 물리적으로 다른 폴더를
하위폴더로 잡고 싶을때 context를 추가해 준다.
<Context path="/contents" docBase="/data/upload" reloadable="false" crossContext="true" />
2. 해당 폴더에 WEB-INF폴더를 만들고 web.xml 을 만든다
해당 web.xml에
<security-constraint>
<display-name>JSP Protection</display-name>
<web-resource-collection>
<web-resource-name>SecureJSPPages</web-resource-name>
<url-pattern>*.jsp</url-pattern>
</web-resource-collection>
<auth-constraint>
<role-name>nobody</role-name>
</auth-constraint>
</security-constraint>
를 추가하여 jsp가 실행되지 않게 설정한다.
'서버설정' 카테고리의 다른 글
리눅스 일반 사용자권한으로 서버 재기동 reboot 시 자동 실행 설정하기 (0) | 2023.06.13 |
---|---|
리눅스 vi 색상 변경 - :colorscheme (0) | 2023.06.12 |
윈도우 Apache Tomcat 버전별 자바 버전 수동 설정 (0) | 2023.03.08 |
org.apache.catalina.webresources.cache.getresource unable to add the resource at 오류 (0) | 2022.09.06 |
OWASP ZAP 체크 - X-Frame-Options header is not included in the HTTP response to protect against 'ClickJacking' attacks. (2) | 2018.02.19 |