| 12345678910111213141516171819202122232425 |
- <?xml version="1.0" encoding="UTF-8"?>
- <server description="new server">
- <!-- Enable features -->
- <featureManager>
- <feature>jsp-2.3</feature>
- <feature>ssl-1.0</feature>
- <feature>servlet-4.0</feature>
- </featureManager>
- <variable name="http.port" defaultValue="9080" />
- <variable name="https.port" defaultValue="9443" />
- <!-- To access this server from a remote client add a host attribute to the following element,
- e.g. host="*" -->
- <httpEndpoint id="defaultHttpEndpoint"
- httpPort="${http.port}"
- httpsPort="${https.port}" />
- <!-- Automatically expand WAR files and EAR files -->
- <applicationManager autoExpand="true" />
- <webApplication id="mwui" location="MWUI-1.0.war" contextRoot="/MWUI" />
- <!-- Default SSL configuration enables trust for default certificates from the Java runtime -->
- <!-- <ssl id="defaultSSLConfig" trustDefaultCerts="true" /> -->
- </server>
|