Skip to content

Commit

Permalink
Re-add configuration_snippets
Browse files Browse the repository at this point in the history
  • Loading branch information
kabicin committed Jun 13, 2023
1 parent 0186a6c commit dd40418
Show file tree
Hide file tree
Showing 10 changed files with 51 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
<featureManager>
<feature>sessionCache-1.0</feature>
</featureManager>
</server>
</server>
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<server>
<variable name="HTTP_PORT" defaultValue="9080" />
<httpEndpoint id="defaultHttpEndpoint" host="*" httpPort="${HTTP_PORT}"/>
</server>
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<server>
<variable name="HTTP_PORT" defaultValue="9080" />
<variable name="HTTPS_PORT" defaultValue="9443" />
<httpEndpoint id="defaultHttpEndpoint" host="*" httpsPort="${HTTPS_PORT}" httpPort="${HTTP_PORT}" />
</server>
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<server>
<variable name="IIOP_PORT" defaultValue="2809" />
<iiopEndpoint id="defaultIiopEndpoint" host="${IIOP_ENDPOINT_HOST}" iiopPort="${IIOP_PORT}" />
</server>
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<server>
<variable name="IIOP_PORT" defaultValue="2809" />
<variable name="IIOPS_PORT" defaultValue="9402" />
<iiopEndpoint id="defaultIiopEndpoint" host="${IIOP_ENDPOINT_HOST}" iiopPort="${IIOP_PORT}">
<iiopsOptions iiopsPort="${IIOPS_PORT}" sslRef="defaultSSLConfig" />
</iiopEndpoint>
</server>
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<server>
<variable name="JMS_PORT" defaultValue="7276" />
<wasJmsEndpoint id="InboundJmsEndpoint" host="*" wasJmsPort="${JMS_PORT}" />
</server>
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<server>
<variable name="JMSS_PORT" defaultValue="7286" />
<wasJmsEndpoint id="InboundJmsEndpoint" host="*" wasJmsSSLPort="${JMSS_PORT}" />
</server>
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<server>
<featureManager>
<feature>mpHealth-1.0</feature>
</featureManager>
</server>
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<server>
<featureManager>
<feature>mpMetrics-1.1</feature>
<feature>monitor-1.0</feature>
</featureManager>

<mpMetrics authentication="false" />
</server>
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
<featureManager>
<feature>sessionCache-1.0</feature>
</featureManager>
</server>
</server>

0 comments on commit dd40418

Please sign in to comment.