forked from blueperf/acmeair-monolithic-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.xml
20 lines (18 loc) · 819 Bytes
/
server.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="UTF-8"?>
<server description="new server">
<!-- Enable features -->
<featureManager>
<feature>jaxrs-2.0</feature>
<feature>managedBeans-1.0</feature>
<feature>cdi-1.2</feature>
<feature>websocket-1.1</feature>
</featureManager>
<!-- To access this server from a remote client add a host attribute to the following element, e.g. host="*" -->
<httpEndpoint id="defaultHttpEndpoint"
host="*"
httpPort="80"
httpsPort="9443" />
<application name="acmeair-monolithic" context-root="/" type="war" location="acmeair-java-2.0.0-SNAPSHOT.war"></application>
<webContainer deferServletLoad="false"/>
<jndiEntry jndiName="com/acmeair/repository/type" value="mongo"/>
</server>