Im trying to remotely access to Wildfly from other pc in local network(no localhost) and I can only do that if I run the server (with standalone.bat) that way:
standalone.bat -b=0.0.0.0
The problem is that I don't wanna to do this manually each time I run the server, I tried editing standalone.xml that way:
<interfaces>
<interface name="management">
<inet-address value="${jboss.bind.address.management:127.0.0.1}"/>
</interface>
<interface name="public">
<inet-address value="${jboss.bind.address:0.0.0.0}"/>
</interface>
<interface name="unsecure">
<inet-address value="${jboss.bind.address.unsecure:0.0.0.0}"/>
</interface>
</interfaces>
But dont work, also tried to do the same through the wildfly UI but also don't work, what im doing wrong? Thanks in advance!