ssl
chengli.zou
这个作者很懒,什么都没留下…
展开
-
javamail发送SSL邮件报报Unrecognized SSL message, plaintext connection错误
发送邮件报如下错误。smtp服务器是smtp.live.com,有要求安全连接(SSL)2009-04-27 10:35:39,421 ERROR [STDERR] javax.mail.MessagingException: Exception reading response; nested exception is: javax.net.ssl.SSLException: Unrecogn...转载 2018-03-07 20:36:20 · 11977 阅读 · 0 评论 -
nginx http强制跳转https
server { listen 80; server_name clzblog.site *.clzblog.site; if ($host = clzblog.site) { rewrite ^(.*)$ https://www....原创 2018-09-19 16:33:06 · 687 阅读 · 0 评论 -
nginx配置https
server { listen 443; server_name www.clzblog.site; ssl on; root html; index index.html index.htm; ...原创 2018-09-19 16:45:08 · 250 阅读 · 0 评论