当前位置: 首页 > others > 正文

resin3的host配置优化

配置resin.conf中的host部分。

定义日志目录,格式化输出,web发布目录,错误码定义等等。

在resin2.x中可以定义 <classpath id=’WEB-INF/classes’ source=’src’ compile=’true’/>

来自动编译源码,但是在resin3.x中没有这个用法,只能放到WEB-INF/classes目录下。

具体如下:

<host id=”www.2hei.net“>

  <stdout-log path=’/root/soft/resin/log/stdout.log’ rollover-period=’1W’/>

  <stderr-log path=’/root/soft/resin/log/stdout.log’ rollover-period=’1W’/>

  <access-log path=’/root/soft/2hei/logs/access.log’>

  <format>%h`%l`%u`%{%Y-%m-%d %H:%M:%S}t`%r`%s`%b`%{Referer}i`%{User-Agent}i`%{X-Up-Calling-Line-ID}i</format>

      <rollover-period>1D</rollover-period>

      <archive-format>%Y-%m-%d.access.test.log</archive-format>

    </access-log>

    <root-directory>/root/soft/2hei</root-directory>

      <web-app id=”/” root-directory=”httpdocs”/>

      <!–

      <classpath id=’WEB-INF/classes’ source=’src’ compile=’true’/>

      –>

    <session-config>

    <!– 2 hour timeout –>

     <session-timeout>120</session-timeout>

     <session-max>4096</session-max>

     <enable-url-rewriting>true</enable-url-rewriting>

    </session-config>

    <error-page>

     <error-code>404</error-code>

     <location>/file_not_found.jsp</location>

    </error-page>

    </host>

本文固定链接: https://www.2hei.net/2007/10/26/resin3%e7%9a%84host%e9%85%8d%e7%bd%ae%e4%bc%98%e5%8c%96/ | 2hei.net

该日志由 u2 于2007年10月26日发表在 others 分类下,
原创文章转载请注明: resin3的host配置优化 | 2hei.net

报歉!评论已关闭.