Wildfly 8.2.0不会重定向到https

时间:2015-01-23 13:11:06

标签: wildfly wildfly-8

我已启用https更改standalone.xml,如下所示:

 <security-realms>

        <security-realm name="UndertowRealm">  
            <server-identities>  
                <ssl>  
                    <keystore path="./ed.keystore" relative-to="jboss.server.config.dir" keystore-password="secret" alias="ed" key-password="secret" />  
                </ssl>
            </server-identities>  
        </security-realm> 
        ...

<subsystem xmlns="urn:jboss:domain:undertow:1.2">
        <buffer-cache name="default"/>
        <server name="default-server">
            <http-listener  name="default" socket-binding="http" redirect-socket="https" />
            <https-listener name="https"   socket-binding="https" security-realm="UndertowRealm" />

以下链接均有效:

第二个实际上是一个安全连接。

不幸的是,第一个链接没有重定向到https协议。

我错过了什么?

谢谢。

1 个答案:

答案 0 :(得分:6)

确保在web.xml中添加此内容

<security-constraint>
  <web-resource-collection>
      <url-pattern>/*</url-pattern>
  </web-resource-collection>
  <user-data-constraint>
      <transport-guarantee>CONFIDENTIAL</transport-guarantee>
  </user-data-constraint>
</security-constraint>

这将允许重定向任何URL。