do not monitor changes in the config or app
[pnews.git] / war / server.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <server description="Default server">
3
4         <logging traceSpecification="*=audit:pnews.*=FINE" consoleLogLevel="INFO" />
5     <!-- Enable features -->
6     <featureManager>
7         <feature>servlet-3.1</feature>
8     </featureManager>
9
10     <!-- To allow access to this server from a remote client host="*" has been added to the following element -->
11     <httpEndpoint id="defaultHttpEndpoint"
12                   host="*"
13                   httpPort="9080"
14                   httpsPort="9443" />
15
16         <applicationManager autoExpand="false"/>
17
18         <webApplication contextRoot="/" location="pnews-1.0.war" />
19
20         <!-- configuration does not change -->
21         <config updateTrigger="disabled"/>
22
23         <!-- application does not change -->
24         <applicationMonitor updateTrigger="disabled"/>
25 </server>