或许有人会问我为啥那么久不更新 其实站点一直有在维护 但是呢優子秉承不发重复 不转帖 不伪原创。因此不会发不是自己倒腾过的东西出来的
今晚睡得晚 错过了睡点 于是直接失眠了QAQ。就想着折腾点啥打发时间 看着谷歌的SSL就有了自己折腾一个和谷歌一样前卫的HTTPS的想法
闲话到此为止
支持新版本TLS协议和ECDHE_RSA加密需要最低openssl1.0.1 而CentOS6通过默认源yum安装的openssl版本只有1.0.0 是不支持新版本TLS协议和ECDHE_RSA密钥交换方式的
一开始本想自己编译openssl 后来一想 自己编译会跟系统的openssl脱节 从而产生一些问题。谷歌是最好的老师 搜到了一个自定义源 里面有已经编译好的新版本openssl
导入源【请注意 此源仅支持64位系统。32位系统的抱歉了 暂时无法找到合适的源】
CentOS5 x64:
rpm -ivh --nosignature http://rpm.axivo.com/redhat/axivo-release-5-1.noarch.rpm
CentOS6 x64:
rpm -ivh --nosignature http://rpm.axivo.com/redhat/axivo-release-6-1.noarch.rpm
通过源升级安装最新版openssl1.0.1e
yum –enablerepo=axivo update openssl
不出意外的话 确认按一次y 导入KEY按一次y 即可完成安装
此时再输入openssl查看version的话 应该会显示【OpenSSL 1.0.1e 11 Feb 2013】
重新编译nginx
印象中这步是必须的 因为似乎编译时引用了openssl的头文档 需要重新编译
即使不是不是必须的 升级到1.4.1支持spdy协议还是不错的
由于我采用的是lnmp一键包 可以直接使用一键包中的upgrade_nginx.sh升级或者重新编译。如果不是使用一键包的 大致步骤如下:
wget http://nginx.org/download/nginx-1.4.1.tar.gz
tar zxvf nginx-1.4.1.tar.gz
cd nginx-1.4.1
./configure –user=www –group=www –prefix=/usr/local/nginx【注:此处填你自己nginx安装目录 按照原先的编译参数 如果原先就没有 prefix直接去掉】 –with-http_stub_status_module –with-http_ssl_module –with-http_gzip_static_module –with-http_spdy_module【注:使用一键包的也需要修改一键包的编译参数 此处加上红色字段】 –with-ipv6
make
mv /usr/local/nginx/sbin/nginx /usr/local/nginx/sbin/nginx.old【移除+备份老nginx的可执行文件 具体路径是看你的安装方式】
cp objs/nginx /usr/local/nginx/sbin/nginx【复制新的可执行文件进去 具体路径也是看你的安装方式】
/usr/local/nginx/sbin/nginx -t【执行新的可执行文件 测试是否配置文件有问题 具体路径同上】
make upgrade
修改nginx配置文件
需要修改的部分很多 不能像以前两三行解决了
首先
listen 你的ip:443 spdy;#新增spdy协议
SSL部分:
ssl on;
ssl_protocols SSLv3 TLSv1 TLSv1.1 TLSv1.2;#新增TLSv1.1 TLSv1.2
ssl_session_cache builtin:1000 shared:SSL:10m;
ssl_session_timeout 5m;#新增SSL session支持 此处和上面的是设置超时和设置cache大小 减轻负载
ssl_stapling on;
ssl_stapling_verify on;#
ssl_certificate 你的公钥.crt;
ssl_certificate_key 你的私钥.key;
ssl_prefer_server_ciphers on;#设置由服务端决定加密方式 避免不安全问题
ssl_ciphers ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-RC4-SHA:ECDHE-RSA-RC4-SHA:ECDH-ECDSA-RC4-SHA:ECDH-RSA-RC4-SHA:ECDHE-RSA-AES256-SHA:RC4-SHA:HIGH:!aNULL:!eNULL:!LOW:!3DES:!MD5:!EXP:!CBC:!EDH:!kEDH:!PSK:!SRP:!kECDH;#去除所有不安全加密方式。确保不会遭受BEAST攻击。设置ECDHE_RSA正向密钥交换方式
注:红字是新增部分 蓝字可能是以前就有 如果以前有就需要加入红字部分 没有就直接添加。黑字是开启SSL加密所必需的
设置完毕后 reload nginx即可。
此时可以关闭浏览器重新访问你的SSL连接 你会发现你也变成了使用ECDHE_RSA的高级用户了
你同时可以使用SSL在线测试工具:https://www.ssllabs.com/ssltest/analyze.html。不出意外的话你应该是会得A了
这是本站的评分:https://www.ssllabs.com/ssltest/analyze.html?d=tucao.org
至于RC4的问题 我发现谷歌也在用 所以无所谓了。
如果你是考虑完全使用SSL 抛弃不加密的HTTP 可以考虑添加一个严格SSL的header
add_header Strict-Transport-Security max-age=2592000;
注意这个条目需要同时加到不经过加密的80端口的server块和经过HTTPS加密的server块。并且要在不经过加密的server块里设置跳转。设置方式不多说了 谷歌一搜一堆
使用ECDHE_RSA的优势:
1、具有良好前瞻性的密钥交换方式 保证数据安全
2、可以提升SSL握手速度 间接提升网站速度
3、和SPDY协议联合 最大限度提升HTTPS效率
至于见鬼的IE6的兼容问题呢 優子经过测试 XP 下的IE6是没有访问问题的 不需要担心。
p.s.总感觉“正向加密”这个词翻译有点怪?
~以上~
参考了以下文章:
https://blog.hasgeek.com/2013/https-everywhere-at-hasgeek
https://www.axivo.com/community/threads/upgrade-to-openssl-1-0-1-in-centos.180/
评论
Thrilled knowing there are options available allowing families/friends bonding experiences unlike anything else—a true gift waiting ahead through bookings made using ### anykeyword### ! hot air balloon flight dubai
One of them is if the applicant has relatives or friends https://compuzilla.ru/skolko-stoit-viza-v-finlyandiyu-2021/
This was a great article. Check out http://www.video-bookmark.com/user/rillenygbl for more.
I read this paragraph fully regarding the comparison of latest and previous technologies, it’s amazing article.
sex kids的最新文章:sex kids
Landscaping in Houston requires creativity due to the heat. Thanks for sharing these techniques! For more, visit Landscaping .
Hey there! This is my 1st comment here so I just wanted to give
a quick shout out and say I truly enjoy
reading your articles. Can you recommend any other blogs/websites/forums that go over the same subjects?
Thanks a ton!
Amazon SES Account的最新文章:Amazon SES Account
Thanks for the helpful advice. Discover more at https://pin.it/5WE3RERI1 .
а вот это классно!
as already said, we hourly live in search http://inoue-ironworks.co.jp/everything-you-need-to-know-about-the-pitbet-app/ relevant virtual casinos.
This post really opened my eyes to different plant choices suitable for hot climates like ours—excited about exploring further at Lawn Care !
ชอบการตกแต่งร้านของ OMG OneMoreGlass สวยงามและเป็นเอกลักษณ์มาก! จัดเลี้ยงในร้านอาหารสาย1
Thank you for providing practical solutions tailored specifically to our Texas climate—it makes a difference as we plan our gardens this season! Explore further ideas at Lawn Care Houston !
Amazing suggestions given regarding patio designs perfect suited towards maximizing enjoyment outdoors while entertaining friends & family alike during warm summer months spent outside under stars twinkling above shining brightly overhead adding warmth & Lawn Care Near Me
Your insights are so helpful; having access to seasoned professionals like those at iDigitGroup in London can truly transform an online business’s performance! SEO Experts
The tourism business is one of the most attractive business areas https://aionword.ru/5-prichin-posetit-albaniyu-etim-letom/
Appreciate the thorough information. For more, visit http://www.video-bookmark.com/user/luanonzxxd .
I appreciated this article. For more, visit https://damienhilp278.fotosdefrases.com/why-poor-ventilation-could-be-influencing-your-convenience .
I’ve been researching the fantastic possibilities for platelet rich plasma injections near me in Houston, and I’m excited to research greater approximately lip injections! Has all and sundry had vast reports at neighborhood med spas?
Thanks for the useful suggestions. Discover more at abogado laboralista en Sevilla .
However, {insurance|insurance policies} vary, the #file_linksC:\Users\Admin\Desktop\file\gsa+en+30k60kGeorgiy2504252P2URLBB.txt”,1,N] and {some|some|some} plans may partially cover {costs|expenses|a large number of costs|a large number of costs} for regenerative treatment, {if|when it is considered medically necessary {from a point of view|position}.
I could not resist commenting. Exceptionally well written!
rooftop solutions的最新文章:rooftop solutions
Nice post. I was checking constantly this blog and I’m
impressed! Very helpful information specifically the last
part 🙂 I care for such information much. I was looking for this particular info for a long time.
Thank you and good luck.
mega888的最新文章:mega888
Anyone else had a sure revel in with a ##Roofing Service Springfield NJ##? I’d like to listen instructions for risk-free corporations inside the edge. Roofing Contractors Springfield
For each person dealing with gynecomastia in Toronto, I awfully endorse searching into the diversified healing treatments handy. You’ll locate treasured assistance at Facelift Toronto .
I found this very helpful. For additional info, visit https://www.4shared.com/s/fy3XTLCYNku .
A friend recommended using a specific Yulee moving company, and I found more details on it via Office moving companies Yulee !
Are those who have flown before ready yet?! Let’s reminisce about our journeys taken high above each other sharing stories told around campfires afterwards—they’ll be unforgettable moments created thanks again courtesy provided by using tools offered Hot air balloon ride dubai
Love how creative gardens can become when one puts their mind towards it; this blog post encourages exploration beyond expectations—definitely checking back with **# any Keyword #** regularly moving forward after reading through all this content too just Landscaping Near Me
Thanks for emphasizing low-maintenance options; they’re crucial during hot summers here! More tips await at Landscaping .
Just got settled in my new place thanks to a great moving company in Allen! More insights can be found at Cheap movers Allen .
Highly recommend checking out Titusville Mover’s before your move to Titusville – they have solid options!
This was a fantastic resource. Check out https://send.now/9kxpu4y0hk63 for more.
Moving doesn’t have to break the bank or cause headaches; learn how easy it can be by visiting # # anyKeyWord # # today and finding local weirsdale movers who are truly dedicated to making every step easier Weirsdale apartment movers
Cherishing memories built over time spent immersing oneself deeply invested communities fostering lasting connections formed harmoniously together collaboratively! Healdsburg apartment movers
Moving feels less daunting when you choose ### anyKeyWord Local movers Kennedale
Just moved into my dream home in Irving with help from an awesome moving company I found through Irving full service movers !
Wonderful tips! Discover more at https://www.scribd.com/document/862808400/Exactly-how-to-Identify-and-Repair-Refrigerant-Leaks-in-Your-air-conditioner-168623 .
hello!,I like your writing so so much! percentage we keep in touch more about your post on AOL?
I need an expert on this house to solve my problem. Maybe that is you!
Having a look forward to see you.
independent escorts in manchester的最新文章:independent escorts in manchester
I love it when individuals come together and share opinions. Great site, stick with it.
Thanks for the practical tips. More at https://www.scribd.com/document/862804182/Should-You-Retrofit-Your-Old-Air-Conditioner-System-With-New-Innovation-212421 .
Hiya! I know this is kinda off topic however , I’d figured I’d ask.
Would you be interested in trading links or maybe guest writing a blog post or vice-versa?
My site goes over a lot of the same topics as yours and I feel we could greatly benefit from each other.
If you happen to be interested feel free to send me an e-mail.
I look forward to hearing from you! Awesome blog by the way!
cpa near me的最新文章:cpa near me
Thanks for the comprehensive read. Find more at https://giphy.com/channel/agnathrlsk .
Thanks for the detailed post. Find more at https://pastelink.net/4cjpl5sj .
Hello, this weekend is fastidious in support of me, for the reason that this point in time i am reading this enormous informative
piece of writing here at my house.
SEO Best Backlinks的最新文章:SEO Best Backlinks
Appreciate the comprehensive advice. For more, visit https://ameblo.jp/rafaelhhne170/entry-12903731222.html .
This was a wonderful guide. Check out auto repair 27701 for more.
It is appropriate time to make some plans for the future and it’s time
to be happy. I’ve read this post and if I could I desire to
suggest you some interesting things or advice. Maybe you can write
next articles referring to this article. I want to read more things about it!
หน้าใส的最新文章:หน้าใส
Начните https://www.365femalemcs.com/en/portraits-en/365-female-mcs-becomes-365-female-mcs/ покупки сию же минуту! стремительная и качественная доставка до вашего порога. вещи для дома: уютные вещички, они превратят ваше пространство особенным.
Got hurt? Don’t wait too long! Contact a personal injury lawyer from auto accident attorney Oak Cliff today if you’re near Oak Cliff.
If you’ve been in an auto accident in Phoenix, it’s essential to consult with experienced lawyers. They can help you navigate the complex legal system. Check out Thompson Law for more info!
Great tips! For more, visit https://griffinbxyf779.yousher.com/just-how-to-reuse-and-get-rid-of-old-a-c-devices-properly .