WEB WAS/WAS

[Tomcat] 버전별 심볼릭링크 허용설정

홍또~ 2020. 11. 27. 14:21

Tomcat은 기본적으로 보안때문에 root디렉토리에서 심볼릭링크연결을 막는다

하지만 이를 간단한 설정으로 풀어줄 수 있다.

다만 심볼릭링크 허용설정시, 성능저하가 있을 수있다.

-Tomcat7버전 이하

conf/server.xml의 경로설정 context쪽에 추가

allowLinking="true"

ex)  <Context path="" allowLinking="true" docBase="/app" reloadable="false"/>

 

-Tomcat8버전 이상

<Resources allowLinking="true" />

conf/context.xml에 추가

'WEB WAS > WAS' 카테고리의 다른 글

[tomcat]Tomcat 8.5 spec  (0) 2021.02.04
[Tomcat] 대용량 파일 업로드시 timeout 설정  (0) 2020.12.18
[Tomcat] reloadable 옵션 및 주의사항  (0) 2020.10.06
[Tomcat] Redis 설정하기  (1) 2020.06.22
[Tomcat] 이중화 + Sticky 세션  (0) 2020.06.04