Liberty server.xml config for batch jsr352 apps
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<server description="Default server"> | |
<!-- Enable features --> | |
<featureManager> | |
<feature>batch-1.0</feature> | |
<feature>ssl-1.0</feature> | |
</featureManager> | |
<!-- To allow access to this server from a remote client host="*" has been added to the following element --> | |
<httpEndpoint id="defaultHttpEndpoint" | |
host="*" | |
httpPort="9080" | |
httpsPort="9443" /> | |
<keyStore id="defaultKeyStore"/> | |
<!-- Automatically expand WAR files and EAR files --> | |
<applicationManager autoExpand="true"/> | |
</server> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment