server.xml 파일에서
원하는 디렉토리를 Document Root로 사용
•appBase를 절대 경로로 지정하고 docBase를 현재 디렉토리로 설정하면 된다.
<Host name="localhost" appBase="/home/user/oramaster/public_html"
unpackWARs="true" autoDeploy="true"
xmlValidation="false" xmlNamespaceAware="false">
<Context path="" docBase="." reloadable="true"/>
</Host>
•appBase를 기본값으로 나두고 docBase를 절대경로로 지정하여도 된다.
<Host name="localhost" appBase="webapps"
unpackWARs="true" autoDeploy="true"
xmlValidation="false" xmlNamespaceAware="false">
<Context path="" docBase="/home/user/oramaster/public_html" reloadable="true"/>
</Host>
•<Context> 를 사용하지 않으면 ROOT를 자동으로 Document Root로 사용 한 다는 것을 기억하자.
출처: https://leelsm.tistory.com/8 [Devlog]
'리눅스 문서' 카테고리의 다른 글
Owncloud10(Centos 7) 설치 (8) | 2020.07.09 |
---|---|
SEVERE [main] org.apache.catalina.core.StandardService.startInternal Failed to start connector [Connector[AJP/1.3-8009]] (9) | 2020.03.09 |
telegram bot (텔레그램봇) 알림중단 (8) | 2020.02.07 |
swap 파티션 생성 (6) | 2019.12.23 |
mysql old password 에서 new password 체계로 변경하기 (6) | 2019.11.20 |