限制 Wildfly HTTP 请求

限制 Wildfly HTTP 请求

在 Linux 上使用 wildfly 11。如何配置 standalone.xml 以仅响应对特定 IP 地址和子网的 HTTP 请求?

我曾尝试使用接口但我发现那只是用于服务器接口。

<interfaces>
    <interface name="management">
        <inet-address value="10.43.4.31"/>
    </interface>
    <interface name="public">
        <inet-address value="10.43.4.31"/>
    </interface>
</interfaces>

相关内容