防止 Wildfly 将 HTTP 请求重定向到 HTTPS

防止 Wildfly 将 HTTP 请求重定向到 HTTPS

我有一个在 Wildfly 15 上运行的项目。在一种情况下,我需要禁用重定向到 HTTPS 的 HTTP 请求。当我在 localhost 上运行 Web 应用程序时,一切都很好,但是当我用我的 IP 替换 localhost 时,HTTP 请求被重定向到 HTTPS。!我需要更改哪些配置才能使其正常工作?

这是我的 standalone.xml 的一部分:

<server name="default-server">
    <http-listener name="default" socket-binding="http" enable-http2="true"/>
    <https-listener name="https" socket-binding="https" security-realm="ApplicationRealm" enable-http2="true"/>
    <host name="default-host" alias="localhost">
        <location name="/" handler="welcome-content"/>
        <http-invoker security-realm="ApplicationRealm"/>
    </host>
</server>

相关内容