-
Notifications
You must be signed in to change notification settings - Fork 599
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add templates for MP, webProfile and javaee
- Loading branch information
Showing
3 changed files
with
68 additions
and
0 deletions.
There are no files selected for viewing
34 changes: 34 additions & 0 deletions
34
dev/com.ibm.ws.kernel.boot/publish/templates/servers/javaee7/server.xml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<server description="new server"> | ||
|
||
<!-- Enable features --> | ||
<featureManager> | ||
<feature>javaee-7.0</feature> | ||
</featureManager> | ||
|
||
<!-- This template enables security. To get the full use of all the capabilities, a keystore and user registry are required. --> | ||
|
||
<!-- For the keystore, default keys are generated and stored in a keystore. To provide the keystore password, generate an | ||
encoded password using bin/securityUtility encode and add it below in the password attribute of the keyStore element. | ||
Then uncomment the keyStore element. --> | ||
<!-- | ||
<keyStore password=""/> | ||
--> | ||
|
||
<!--For a user registry configuration, configure your user registry. For example, configure a basic user registry using the | ||
basicRegistry element. Specify your own user name below in the name attribute of the user element. For the password, | ||
generate an encoded password using bin/securityUtility encode and add it in the password attribute of the user element. | ||
Then uncomment the user element. --> | ||
<basicRegistry id="basic" realm="BasicRealm"> | ||
<!-- <user name="yourUserName" password="" /> --> | ||
</basicRegistry> | ||
|
||
<!-- To access this server from a remote client add a host attribute to the following element, e.g. host="*" --> | ||
<httpEndpoint id="defaultHttpEndpoint" | ||
httpPort="9080" | ||
httpsPort="9443" /> | ||
|
||
<!-- Automatically expand WAR files and EAR files --> | ||
<applicationManager autoExpand="true"/> | ||
|
||
</server> |
17 changes: 17 additions & 0 deletions
17
dev/com.ibm.ws.kernel.boot/publish/templates/servers/microProfile1/server.xml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<server description="new server"> | ||
|
||
<!-- Enable features --> | ||
<featureManager> | ||
<feature>microProfile-1.2</feature> | ||
</featureManager> | ||
|
||
<!-- To access this server from a remote client add a host attribute to the following element, e.g. host="*" --> | ||
<httpEndpoint id="defaultHttpEndpoint" | ||
httpPort="9080" | ||
httpsPort="9443" /> | ||
|
||
<!-- Automatically expand WAR files and EAR files --> | ||
<applicationManager autoExpand="true"/> | ||
|
||
</server> |
17 changes: 17 additions & 0 deletions
17
dev/com.ibm.ws.kernel.boot/publish/templates/servers/webProfile7/server.xml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<server description="new server"> | ||
|
||
<!-- Enable features --> | ||
<featureManager> | ||
<feature>webProfile-7.0</feature> | ||
</featureManager> | ||
|
||
<!-- To access this server from a remote client add a host attribute to the following element, e.g. host="*" --> | ||
<httpEndpoint id="defaultHttpEndpoint" | ||
httpPort="9080" | ||
httpsPort="9443" /> | ||
|
||
<!-- Automatically expand WAR files and EAR files --> | ||
<applicationManager autoExpand="true"/> | ||
|
||
</server> |