Skip to content

Instantly share code, notes, and snippets.

@oviniciusfeitosa
Last active August 30, 2016 18:16
Show Gist options
  • Save oviniciusfeitosa/70340798200080c9293f7119c69a7c4a to your computer and use it in GitHub Desktop.
Save oviniciusfeitosa/70340798200080c9293f7119c69a7c4a to your computer and use it in GitHub Desktop.
JBOSS - Share network access to anyone
Change the file "standalone.xml":
<interface name="public">
<inet-address value="${jboss.bind.address:0.0.0.0}"/>
</interface>
to
<interface name="public">
<any-ipv4-address/>
</interface>
or
<interface name="public">
<inet-address value="0.0.0.0"/>
</interface>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment