nginx ssl配置

来源:互联网 发布:淘宝全球买手那些人 编辑:程序博客网 时间:2024/05/22 07:59
SSL网站测试地址:
https://www.ssllabs.com/ssltest/analyze.html?d=xs.tydevice.com
可以测试SSL网站支持的协议等详细的信息

SSL证书验证过程:
https://github.com/wuchangming/https-mitm-proxy-handbook/blob/master/doc/Chapter3.md

对服务器TLS1.2协议不支持的问题解决:
http://www.thinksaas.cn/topics/0/501/501816.html
类似的问题分析网站
http://www.cnblogs.com/python-way/p/6227631.html
http://steveliles.github.io/android_ssl_certificate_not_trusted.html

nginx编译报错的解决:
http://blog.csdn.net/signmem/article/details/18974587


nginx性能调优
1. Nginx默认设置的DH算法(译注:Diffie-Hellman key exchange algorithm)是影响SSL性能的最大因素,因此采用如下设置能增加SSL性能:
1
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
2
ssl_ciphers ECDHE-RSA-AES256-SHA384:AES256-SHA256:RC4:HIGH:!MD5:!aNULL:!eNULL:!NULL:!DH:!EDH:!AESGCM;
3
ssl_prefer_server_ciphers on;
4
ssl_session_cache shared:SSL:10m;
5
ssl_session_timeout 10m;
网址链接:http://blog.jobbole.com/44844/

https://gist.github.com/kaushikgandhi/663e6e47d8a42025e848e454f5e064c4

nginx日志配置:
http://www.ttlsa.com/linux/the-nginx-log-configuration/

nginx SSL证书安装
https://www.gypthecat.com/how-to-install-a-ssl-certificate-on-nginx
https://blog.longwin.com.tw/2015/12/nginx-ssl-https-ca-setup-rating-a-2015/