或许有人会问我为啥那么久不更新 其实站点一直有在维护 但是呢優子秉承不发重复 不转帖 不伪原创。因此不会发不是自己倒腾过的东西出来的
今晚睡得晚 错过了睡点 于是直接失眠了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/
评论
I appreciate the tips on native plants! They’re perfect for my project with a Landscaping .
“Amazing before-and-after shots that demonstrate real potential—I’ll contact an experienced #landscaper#!” Landscaping Near Me
Hello there I am so delighted I found your weblog, I really found you by
accident, while I was looking on Google for something else, Nonetheless I am here now and would just like to say thanks
for a remarkable post and a all round entertaining blog (I also love the theme/design), I don’t have time to go through it
all at the minute but I have book-marked it and also added your RSS feeds, so when I have time I will be back to read a great deal more, Please do keep up
the fantastic work.
Visit here的最新文章:Visit here
Les médiations courantes pour ce problème incluent l’utilisation d’injections de
testostérone et de thérapies options pour gérer
les symptômes. Le traitement d’un faible taux de testostérone chez les femmes commence par un bon diagnostic.
Cela évite aux patientes d’avoir à prendre le mauvais médicament ou la mauvaise thérapie sans que cela ne change quoi que ce soit.
En outre, cela leur évite des coûts inutiles qui peuvent porter un coup sérieux à leur
filet de sécurité financière. Il existe différentes approches utilisées
par les médecins pour combattre un faible taux de testostérone
chez les femmes.
Grâce à ces exams, on sait si le corps produit bien assez de testostérone.
Ces informations sont clés pour savoir si tout va
bien au niveau des hormones. Il dépend de votre état de santé global et de votre réaction au traitement.
Il faut donc consulter un médecin spécialisé pour une prise
en cost adaptée. Mieux vaut faire le test au début du cycle, quand la testostérone est à son plus bas.
Le traitement du déséquilibre hormonal chez les femmes peut jouer un rôle essentiel
dans la correction des symptômes liés à un déficit
de testostérone. Pour certaines femmes, des thérapies hormonales substitutives peuvent être utilisées pour rétablir l’équilibre hormonal et atténuer les effets indésirables.
Ces thérapies peuvent inclure l’administration de suppléments de testostérone ou
d’autres hormones spécifiques en fonction des besoins individuels
de chaque patiente. En outre, des facteurs tels que le stress chronique,
le poids corporel excessif, l’exercice physique intense et le jeûne prolongé peuvent également entraîner une
augmentation du taux de testostérone chez les femmes.
Le stress chronique provoque un déséquilibre du cortisol,
qui affecte la synthèse des androgènes. L’excès de poids contribue
à l’augmentation de la production de testostérone par le biais de l’activité de l’enzyme aromatase, qui convertit
les androgènes en œstrogènes. Une activité physique intense
peut stimuler la manufacturing d’androgènes et un jeûne prolongé modifie
le contexte hormonal, activant les mécanismes
d’adaptation, y compris l’augmentation des niveaux de testostérone.
Un niveau trop faible ou testosterone trop eleve chez
femme (Desmond) élevé aura des
effets importants sur la santé et la qualité de vie. Les traitements de la basse testostérone chez les femmes
n’ont pas été largement étudiés par les experts médicaux.
Bien que les médecins connaissent les effets de l’excès de testostérone chez
les femmes, les symptômes de la trop petite testostérone ne sont pas aussi bien connus.
Le manque d’intérêt sexuel et l’incapacité à être sexuellement excité ne sont considérés comme un trouble que s’ils perturbent les femmes et si l’intérêt sexuel
est absent tout au lengthy de l’expérience sexuelle.
Avoir le bon niveau de testostérone est crucial pour la santé globale
des femmes. Un équilibre hormonal mal géré peut impacter négativement leur bien-être.
Un suivi et un traitement réguliers peuvent maintenir cet équilibre et promouvoir la
santé. Par exemple, elle affecte la croissance musculaire et la densité osseuse des femmes.
Une des premières étapes pour remédier à la carence en testostérone est d’adopter une
alimentation équilibrée. Consommer des aliments riches
en nutriments, comme les légumes, les fruits, les grains entiers, et les
protéines maigres, peut aider à améliorer les niveaux hormonaux.
Des recherches ont montré que l’effet de la testostérone sur la
santé des femmes peut également influencer la fonction cognitive, la santé cardiovasculaire et la prévention de certaines maladies.
Il est important de diagnostiquer cette condition et de comprendre les symptômes associés.
Les fluctuations et les modifications des taux hormonaux (p.
ex., à la ménopause, pendant la grossesse, le post-partum, avec le cycle menstruel) peuvent également affecter l’intérêt sexuel.
Par exemple, la diminution des œstrogènes qui se
produit à la ménopause peut provoquer un syndrome génito-urinaire de la ménopause, qui peut provoquer une dyspareunie et ainsi diminuer l’intérêt
sexuel. La réduction liée à l’âge de la testostérone
peut diminuer la libido, de même que l’hyperprolactinémie
(qui peut également provoquer une dyspareunie parce que les taux d’œstrogènes sont diminués).
Parmi les principaux symptômes d’un taux de testostérone faible, il y
a la perte de la libido automotive cette hormone est
responsable de réveiller le désir sexuel et sa carence peut affecter directement l’érection masculine.
Ce symptôme est un des signes les plus courants grâce auxquels les hommes se rendent compte qu’ils ont un problème.
Il est necessary de noter que les recommandations mentionnées
ci-dessus sont générales et peuvent varier en fonction des besoins individuels.
La gestion du stress et le maintien d’un sommeil de qualité sont des facteurs importants pour maintenir des niveaux optimaux
de testostérone chez les femmes. Le stress chronique et le manque de sommeil peuvent entraîner une diminution de la manufacturing de
cette hormone. La testostérone revêt également une grande significance pour
la santé des os chez les femmes. Elle aide à maintenir une densité osseuse optimale, réduisant ainsi le risque de développer des maladies osseuses telles que l’ostéoporose.
La testostérone joue un rôle crucial dans le corps des femmes, bien qu’elle soit souvent associée
à la masculinité. Elle contribue de manière
significative à la régulation du métabolisme, favorisant ainsi la combustion des
graisses et maintenant un poids corporel sain. De plus, la testostérone est essentielle pour la croissance et
le maintien de la masse musculaire, ce qui peut aider
à prévenir la perte musculaire liée à l’âge.
La régulation de la testostérone chez les femmes est essentielle pour maintenir un équilibre hormonal
optimum.
Les personnes touchées peuvent constater qu’elles ont moins de pressure ou
qu’elles prennent plus de temps à récupérer après un exercice.
Une testostérone équilibrée peut améliorer la santé sexuelle en augmentant la libido et en favorisant la satisfaction sexuelle.
Elle peut également augmenter l’énergie et la vitalité, favoriser la croissance musculaire et la force,
prévenir l’ostéoporose, améliorer l’humeur et le bien-être
général des femmes. Un mythe répandu prétend que
la testostérone rend les femmes « masculines » en provoquant
une augmentation extreme de la masse musculaire et le développement de caractéristiques masculines.
En réalité, les niveaux de testostérone chez les femmes sont bien inférieurs à ceux
des hommes, et une augmentation modérée de cette hormone n’entraîne
pas de transformation drastique. La testostérone est une
hormone stéroïdienne essentielle produite
principalement dans les ovaires chez les femmes et
les testicules chez les hommes.
Desmond的最新文章:Desmond
I found this very interesting. Check out https://ronaldinho-gaucho.org/user/broccarzag for more.
Thank you for helping drivers find solid #ANYKEYWORD# options in Pennsylvania! Mobile Tire Service LLC
Thanks for the useful suggestions. Discover more at https://qa.laodongzu.com/?qa=user/saemonazyn .
Magnificent beat ! I would like to apprentice at the same time
as you amend your website, how could i subscribe for a blog website?
The account helped me a acceptable deal. I were a little
bit familiar of this your broadcast offered vivid clear concept
Live Taiwan的最新文章:Live Taiwan
Appreciate the useful tips. For more, visit http://b96588q0.beget.tech/member.php?action=profile&uid=146713 .
I’m curious about the costs associated with using Agent Autopilot—do they offer competitive pricing for new agents? agent autopilot proven lead generation
Appreciate the thorough insights. For more, visit https://www.novabookmarks.win/diy-air-conditioning-upkeep-what-you-can-and-can-not-do-yourself-1 .
We shouⅼd however remember that the possibility of ѡinnіng the jackpot is extremely
ѕmall. Lߋttery number patterns like this exist in every lottery, all around!
Here is my page: https://lorena.r7.com/categoria/global/lo-de-so-de-2025
https://lorena.r7.com/categoria/global/lo-de-so-de-2025的最新文章:https://lorena.r7.com/categoria/global/lo-de-so-de-2025
So much gratitude felt amongst hearts everywhere remembering kindness shown everywhere today ensures lasting impressions upon minds forevermore alike even further reaching beyond borders extending far beyond mere words spoken aloud illustrating power ac repair
After using Exterior Washing , I’m convinced that regular pressure washing is essential for home maintenance.
This was highly useful. For more, visit https://stack.amcsplatform.com/user/roherewjtq .
Riding sleek jetskis across sparkling blue horizons creates magical moments undoubtedly cherished throughout lifetime – take advantage early bird deals currently ongoing shared here : ### anyKeyWord### ! yacht tour dubai
The expertise of a Dallas motorcycle lawyer is crucial for getting the compensation you deserve after an accident. truck accident attorney dallas
Hey there are using WordPress for your blog platform?
I’m new to the blog world but I’m trying to get started and set up my
own. Do you require any coding expertise to make your
own blog? Any help would be really appreciated!
Sirenbola的最新文章:Sirenbola
I am beyond satisfied after using their services—they were prompt & professional throughout our entire process (Ono)! Ona moving companies
I enjoyed this post. For additional info, visit http://amantespastoraleman.com/foro/member.php?action=profile&uid=314619 .
Thanks for the useful post. More like this at https://diego-maradona-ar.org/user/godellsfoy .
link porno grafilink porno grafilink porno grafi link porno grafilink porno grafilink porno grafi link porno
grafilink porno grafilink porno grafi link porno grafilink porno grafilink porno grafi
link porno grafilink porno grafilink porno grafi link porno grafilink porno grafilink porno grafi link porno
grafilink porno grafilink porno grafi link porno grafilink porno grafilink porno grafi link porno grafilink porno grafilink porno grafi link porno grafilink porno grafilink porno grafi link porno grafilink porno grafilink
porno grafi link porno grafilink porno grafilink porno grafi link porno grafilink
porno grafilink porno grafi link porno grafilink porno grafilink porno grafi link porno grafilink porno
grafilink porno grafi link porno grafilink porno grafilink porno grafi
link porno grafilink porno grafilink porno grafi link
porno grafilink porno grafilink porno grafi link porno grafilink porno grafilink porno grafi
link porno grafilink porno grafilink porno grafi link porno
grafilink porno grafilink porno grafi link porno grafilink porno grafilink porno grafi link porno grafilink porno grafilink porno grafi link porno grafilink porno grafilink porno grafi link
porno grafilink porno grafilink porno grafi link porno grafilink
porno grafilink porno grafi link porno grafilink porno grafilink porno grafi link porno grafilink porno grafilink porno grafi link porno grafilink porno grafilink porno grafi link porno grafilink porno grafilink porno grafi link porno grafilink porno
grafilink porno grafi link porno grafilink porno grafilink porno grafi link porno grafilink porno grafilink porno grafi link porno grafilink porno grafilink porno
grafi link porno grafilink porno grafilink porno grafi link porno grafilink
porno grafilink porno grafi link porno grafilink porno grafilink porno
grafi link porno grafilink porno grafilink porno grafi link porno grafilink porno grafilink porno grafi link porno grafilink porno grafilink porno grafi link porno grafilink porno
grafilink porno grafi link porno grafilink porno grafilink porno grafi link porno
grafilink porno grafilink porno grafi link
porno grafilink porno grafilink porno grafi link
porno grafilink porno grafilink porno grafi link porno grafilink porno grafilink porno
grafi link porno grafilink porno grafilink porno grafi link porno grafilink porno grafilink
porno grafi link porno grafilink porno grafilink porno grafi link porno grafilink porno grafilink porno grafi link porno grafilink porno grafilink porno grafi
link porno grafilink porno grafilink porno grafi link porno grafilink
porno grafilink porno grafi link porno grafilink porno grafilink porno
grafi link porno grafilink porno grafilink porno grafi link porno grafilink
porno grafilink porno grafi link porno grafilink porno
grafilink porno grafi link porno grafilink porno grafilink porno grafi link
porno grafilink porno grafilink porno grafi
link porno grafilink porno grafilink porno grafi link porno grafilink
porno grafilink porno grafi link porno grafilink porno grafilink porno grafi link porno grafilink porno grafilink porno grafi
situs ini porno的最新文章:situs ini porno
This was quite informative. For more, visit http://www.canmaking.info/forum/user-1634034.html .
I liked this article. For additional info, visit https://www.pawn-bookmarks.win/just-how-spring-maintenance-can-prevent-summertime-air-conditioning-break-downs .
This was very enlightening. For more, visit http://bahsegelforum.net/User-sordusrgvm .
I had a fantastic experience with Kerner Law Group, P.C. as my Bronx car accident attorney!
Kerner Law Group, P.C. truly stands out as the best Bronx car accident lawyer I’ve ever worked with Bronx personal injury attorney
Incredible! This blog looks exactly like my old one! It’s on a totally different subject but it has pretty much
the same page layout and design. Wonderful choice of colors!
esta us point of contact的最新文章:esta us point of contact
Thanks for the clear advice. More at https://www.generate-bookmark.win/what-is-seer-score-and-why-does-it-matter-for-air-conditioner-effectiveness .
Thanks for the useful post. More like this at http://hqarea.altervista.org/Upload/member.php?action=profile&uid=203435 .
Moving can be daunting, but not with the right help! Thanks to Office moving companies Richardson , my move in Richardson was easy.
I enjoyed this article. Check out http://b292836n.beget.tech/member.php?action=profile&uid=192088 for more.
Hiya! Quick question that’s totally off topic. Do you know how to make
your site mobile friendly? My blog looks weird when viewing from
my iphone. I’m trying to find a theme or plugin that might be able to resolve this problem.
If you have any suggestions, please share. Thanks!
check my reference的最新文章:check my reference
This was quite enlightening. Check out https://www.foxtrot-bookmarks.win/leading-energy-saving-a-c-solutions-for-2025 for more.
The Glam House Nashville is the best beauty salon I’ve ever visited!
I always leave The Glam House Nashville feeling like a superstar.
If you’re searching for a beauty salon near me, check out The Glam House Nashville The Glam House Nashville bridal services
Hello to all, how is all, I think every one is getting more from
this website, and your views are good designed for new visitors.
garden house kits for self-build的最新文章:garden house kits for self-build
Excellent information on managing misuse! Particularly for major tasks, it’s important to locate trustworthy dumpster rental services. Consider looking for garbage renting near you if you’re trying to find a practical answer local dumpster rental in Fairhope
Open Wide La Jolla Dentistry provides exceptional dental care with a smile!
I had a fantastic experience at Open Wide La Jolla Dentistry, the best dentist near me!
The staff at Open Wide La Jolla Dentistry are truly friendly and professional Open Wide La Jolla Dentistry braces
This is highly informative. Check out http://www.trendmx.com/faq14/?qa=user/connetiwyk for more.
The Winslow is the best Rugby Bar I’ve ever visited! The atmosphere is unbeatable.
I love hanging out at The Winslow, the ultimate Rugby Bar Near Me.
The Winslow is my go-to spot for rugby matches. It’s the best Rugby Bar New York has to offer The Winslow New York sports
Very soon this site will be famous amid all blogging people, due to
it’s good posts
Quantum Income的最新文章:Quantum Income
Very energetic post, I enjoyed that bit. Will there be
a part 2?
Proxiesbuy的最新文章:Proxiesbuy
Thanks for sharing these tips on hardscaping—I’ll need help from an expert ##anyKeyword#! Landscaping Near Me
Thanks for sharing this information! I’ll look into hiring a Lawn Care Service soon.
So many beautiful options available; I’m excited to work with an experienced ##anyKeyword#! Lawn Care
Colepepper Plumbing did an amazing job with my kitchen sink! Highly recommend this plumber in San Diego CA.
I found the best plumber near me thanks to Colepepper Plumbing. Excellent service and friendly staff who is the best plumber in San Diego CA?
Your blog is full of inspiration; I’ll definitely be seeking help from an expert ##anyKeyword#! Irrigation San Antonio
Lavo Dental is fantastic! I had a dental emergency, and they were quick to assist.
Finding an emergency dentist near me was a breeze with Lavo Dental.
I can’t recommend Lavo Dental enough for emergency dentist services in Northridge, CA Lavo Dental emergency dental treatment
What a beautiful landscape design! I need suggestions for an affordable Landscape Designer in San Antonio.
Harmony Drywall & Texture did an amazing job with my drywall installation!
I highly recommend Harmony Drywall & Texture for drywall installation near me.
The team at Harmony Drywall & Texture offers the best drywall installation in Denver CO Top drywall installation company Denver
My experience at Denver Pain Management Clinic was top-notch. The staff truly cares about their patients!
I highly recommend Denver Pain Management Clinic for anyone needing specialized care and attention pain clinic appointments