1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!--
- $RCSfile$
- $Revision$
- $Date$
-->
<!-- Resin 3.1.10+ configuration file for Wildfire site. Precondition: run 'ant jar'. -->
<resin xmlns="http://caucho.com/ns/resin" xmlns:resin="http://caucho.com/ns/resin/core">
<!-- Path to the wildfire cvs project -->
<system-property root="XXX EDIT THIS PATH XXX"/>
<system-property target="${root}\target"/>
<system-property wildfireHome="${target}"/>
<log name="" level="info" path="stdout:" timestamp="%H:%M:%S "/>
<log name="com.caucho.java" level="config" path="stdout:" timestamp="%H:%M:%S "/>
<log name="com.caucho.loader" level="config" path="stdout:" timestamp="%H:%M:%S "/>
<server>
<http port="8080"/>
<host-default>
<class-loader>
<library-loader path="${target}/lib"/>
</class-loader>
<!-- Access logs if you want them -->
<!--
<access-log path="stdout:"
format="%h %l %u %t "%r" %s %b "%{Referer}i" "%{User-Agent}i""
rollover-period="1W"/>
-->
</host-default>
<resin:import path="${resinHome}/conf/app-default.xml"/>
<!-- configures the default host, matching any host name -->
<host id="">
<!-- WILDFIRE webapp -->
<web-app id="/wildfire"
document-directory="${root}/src/web"
startup-mode="lazy"
temp-dir="${root}/src/web/WEB-INF/tmp"
work-dir="${root}/src/web/WEB-INF/work"
>
<path-mapping url-pattern="/WEB-INF/*" real-path="${root}/src/web/WEB-INF"/>
</web-app>
</host>
</server>
</resin>