- 论坛徽章:
- 0
|
[代码] resin.xml
01 <!--
02 - Minimal configuration for starting server using an apache-style
03 - document tree in /var/www/htdocs.
04 -
05 - unix> java -jar lib/resin.jar -root-directory /var/www \
06 - -conf conf/minimal.xml
07 -
08 - resin.root is /var/www, documents are in /var/www/htdocs.
09 -->
10
11 <resin xmlns="http://caucho.com/ns/resin"
12 xmlns:resin="urn:java:com.caucho.resin">
13
14 <cluster-default>
15 <resin:import path="${__DIR__}/app-default.xml"/>
16 </cluster-default>
17
18 <cluster id="">
19 <server id="">
20 <http port="80"/>
21 </server>
22
23 <host id="" root-directory=".">
24 <web-app id="/" root-directory="D:/WORKDIR/oschina/webapp"/>
25 </host>
26 </cluster>
27 </resin> |
|