윈도우 3.1 버젼
<host id="****.***.****" root-directory=".">
<access-log>
<path>/logs/access_info.log</path>
<format>%h %l %u %t "%r" %s %b "%{Referer}i" "%{User-Agent}i" %D</format>
<exclude>\.gif$</exclude>
<exclude>\.jpg$</exclude>
<exclude>\.png$</exclude>
<exclude>\.js$</exclude>
<exclude>\.css$</exclude>
<exclude>\.html$</exclude>
<exclude>\.ico$</exclude>
<rollover-period>1D</rollover-period>
</access-log>
<!--
- configures an explicit root web-app matching the
- webapp's ROOT
-->
<web-app id="/" root-directory="C:/k2web/jwizard"/>
<web-app id="/resin-admin" root-directory="${resin.home}/php/admin">
<!--
- Administration application /resin-admin
-->
<prologue>
<resin:set var="resin_admin_external" value="false"/>
<resin:set var="resin_admin_insecure" value="true"/>
</prologue>
<error-page error-code="500" location="/error.html"/>
</web-app>
</host>
리눅스 3.1
<host id="***.***.***" root-directory=".">
<access-log>
<path>${resin.home}/logs/access_main.log</path>
<format>%h %l %u %t "%r" %s %b "%{Referer}i" "%{User-Agent}i" %D</format>
<exclude>\.gif$</exclude>
<exclude>\.jpg$</exclude>
<exclude>\.png$</exclude>
<exclude>\.js$</exclude>
<exclude>\.css$</exclude>
<exclude>\.html$</exclude>
<exclude>\.ico$</exclude>
<rollover-period>1D</rollover-period>
</access-log>
<stderr-log path="stdout:" timestamp="[%Y-%m-%d %H:%M:%S.%s] "/>
<stdout-log path="logs/web_stdout.log" rollover-period='1D'/>
<web-app id="/">
<root-directory>/webapp/main</root-directory>
<error-page error-code="500" location="/error.html"/>
</web-app>
</host>
주의사항 : 에러페이지가 1kb 이하일때는 윈도우 자체 에러 페이지로 이동하는 경우가 많다
1kb 이상으로 에러페이지 작성하자
'Web Programing! > JAVA / JSP' 카테고리의 다른 글
[JAVA]Blob 와 Clob의 차이와 호출 (0) | 2015.01.29 |
---|---|
[JAVA] POI 기능 (0) | 2014.07.24 |
[JAVA] Error : Unhandled exception type ConfigurationException (0) | 2014.03.17 |
JSP 한글깨짐 현상 처리 ( get 방식, post 방식 ) (0) | 2013.07.24 |
[JAVA] java.lang.ClassNotFoundException: org.apache.commons.logging.LogFactory 에러 (0) | 2013.04.01 |
[JSP] 파일내용읽기 (0) | 2013.02.27 |
[JSP] 파일생성 및 내용넣기 (0) | 2013.02.26 |