http转https

来源:互联网 发布:有线网络无法连接 编辑:程序博客网 时间:2024/05/20 17:59

1. server.xml

    <Connector port="8443" protocol="org.apache.coyote.http11.Http11NioProtocol"                SSLEnabled="true" scheme="https" secure="true"               acceptCount="100"                clientAuth="false" sslProtocol="TLS"   keystoreFile="E:\java\jks\g-jia.net.jks"    keystorePass="liiefwAh5Rrg"    truststoreFile="E:\java\jks\g-jia.net.jks"    truststorePass="liiefwAh5Rrg"   />

2.web.xml

<login-config><auth-method>CLIENT-CERT</auth-method><realm-name>Client Cert Users-only Area</realm-name></login-config><security-constraint><web-resource-collection><web-resource-name>SSL</web-resource-name><url-pattern>/login.htm</url-pattern><url-pattern>/any/checkPhoneCode.htm</url-pattern><url-pattern>/any/resetPwd.htm</url-pattern><http-method>DELETE</http-method>                <http-method>GET</http-method>                <http-method>POST</http-method>                <http-method>PUT</http-method> </web-resource-collection><user-data-constraint><transport-guarantee>CONFIDENTIAL</transport-guarantee></user-data-constraint></security-constraint>


0 0
原创粉丝点击