在 wildfly 中从 http 迁移到 https
migration from http to https in wildfly
我想在 wildfly 19.1 中从 http 迁移到 https
设置完本教程中的所有配置后 https://medium.com/@hasnat.saeed/setup-ssl-https-on-jboss-wildfly-application-server-fde6288a0f40 我遇到了麻烦:
当我的应用程序服务器启动时尝试加载所有页面。
注意:我的项目是一个包含大量查询的大型项目,此操作需要很多时间
我找到了解决方案。在 Standalone.xml
中,我们应该禁用此行的 enable-http2="true"
:
<https-listener name="https" socket-binding="https" security-realm="ApplicationRealm" enable-http2="false"\>
我想在 wildfly 19.1 中从 http 迁移到 https
设置完本教程中的所有配置后 https://medium.com/@hasnat.saeed/setup-ssl-https-on-jboss-wildfly-application-server-fde6288a0f40 我遇到了麻烦:
当我的应用程序服务器启动时尝试加载所有页面。
注意:我的项目是一个包含大量查询的大型项目,此操作需要很多时间
我找到了解决方案。在 Standalone.xml
中,我们应该禁用此行的 enable-http2="true"
:
<https-listener name="https" socket-binding="https" security-realm="ApplicationRealm" enable-http2="false"\>