|
发表于 2003-5-5 10:51:40
|
显示全部楼层
resin官方有很好的文档,如果你是apache+resin,可参照我以前的一个配置:
<VirtualHost 127.0.0.1>
<IfModule mod_caucho.c>
CauchoConfigFile "C:/resin-ee/conf/resin.conf"
# For security, deployment sites may want to
# comment the following out.
<Location /caucho-status>
SetHandler caucho-status
</Location>
</IfModule>
ServerAdmin winix@winix.com
DocumentRoot "/webroot"
ServerName ww2.winix.com
DirectoryIndex index.htm index.html index.jsp
ErrorLog logs/ww2-error_log
CustomLog logs/ww2-access_log common
</VirtualHost> |
|