Skip to content

Commit

Permalink
Update server.xml so that the app can be run remotely (#194)
Browse files Browse the repository at this point in the history
* Update server.xml

* Update server.xml

---------

Co-authored-by: Gilbert Kwan <gkwan@ca.ibm.com>
  • Loading branch information
shin19991207 and gkwan-ibm authored Sep 18, 2024
1 parent 31103b4 commit ae7308a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions finish/src/main/liberty/config/server.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@
<variable name="http.port" defaultValue="9080" />
<variable name="https.port" defaultValue="9443" />

<httpEndpoint id="defaultHttpEndpoint" httpPort="${http.port}"
httpsPort="${https.port}" />
<httpEndpoint id="defaultHttpEndpoint" host="*"
httpPort="${http.port}"
httpsPort="${https.port}" />
<webApplication location="guide-arquillian-managed.war"
context-root="/" />
</server>
5 changes: 3 additions & 2 deletions start/src/main/liberty/config/server.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@
<variable name="http.port" defaultValue="9080" />
<variable name="https.port" defaultValue="9443" />

<httpEndpoint id="defaultHttpEndpoint" httpPort="${http.port}"
httpsPort="${https.port}" />
<httpEndpoint id="defaultHttpEndpoint" host="*"
httpPort="${http.port}"
httpsPort="${https.port}" />
<webApplication location="guide-arquillian-managed.war"
context-root="/" />
</server>

0 comments on commit ae7308a

Please sign in to comment.