Skip to content

Commit

Permalink
Merge pull request #195 from OpenLiberty/staging
Browse files Browse the repository at this point in the history
Merge staging to prod - Update server.xml so that the app can be run remotely (#194)
  • Loading branch information
gkwan-ibm authored Sep 18, 2024
2 parents ccc3942 + 3bf04f6 commit a9d7bca
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 a9d7bca

Please sign in to comment.