linux tomcat configure https

Reference: http://www.cnblogs.com/yanghuahui/p/3389923.html

Use jdk's own keytool to generate ssl certificate, build tomcat+https protocol
http://blog.csdn.net/p793049488/article/details/53422195

Perfect configuration of Tomcat's HTTPS
http://lixor.iteye.com/blog/1532655

server.xml configuration
<Connector port="8443" SSLEnabled="true" protocol="org.apache.coyote.http11.Http11NioProtocol"
               maxThreads="150" scheme="https" secure="true"
               clientAuth="false" sslProtocol="TLS"
      keystoreFile="D:/devEvn/ssl/tomcat.keystore" keystorePass="123456"
  ciphers="TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256,TLS_ECDHE_RSA_WITH_AES_128_
CBC_SHA,TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384,TLS_ECDHE_RSA_WITH_AES_256_C
BC_SHA,TLS_RSA_WITH_AES_128_CBC_SHA256,TLS_RSA_WITH_AES_128_CBC_SHA,TLS_RS
A_WITH_AES_256_CBC_SHA256,TLS_RSA_WITH_AES_256_CBC_SHA"
  />

Guess you like

Origin http://10.200.1.11:23101/article/api/json?id=326774949&siteId=291194637