我想将url更改为我的web-app,我尝试更改standalone.xml中的接口,但应用程序仍然运行在127.0.0.1:port。
来自standalone.xml的接口:
<interfaces>
<interface name="management">
<inet-address value="${jboss.bind.address.management:192.168.24.216}"/>
</interface>
<interface name="public">
<inet-address value="${jboss.bind.address:192.168.24.216}"/>
</interface>
<interface name="unsecure">
<inet-address value="${jboss.bind.address.unsecure:192.168.24.216}"/>
</interface>
</interfaces>
我需要修改哪个文件?是JBoss EAP 6.4
您的应用程序仍将在本地计算机上运行,但如果您正确地转发路由器,则应该能够通过IP访问它。 This video解释了portforwarding的工作原理。