1
0

server.xml 957 B

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