欧美一级特黄大片做受成人-亚洲成人一区二区电影-激情熟女一区二区三区-日韩专区欧美专区国产专区

使用Let'sEncrypt客戶端免費(fèi)申請(qǐng)SSL證書

       Mozilla、思科、Akamai、IdenTrust、EFF 和密歇根大學(xué)研究人員聯(lián)合宣布了 Let’s Encrypt CA 項(xiàng) 目,計(jì)劃為網(wǎng)站提供免費(fèi)的基本 SSL 證書,以加速互聯(lián)網(wǎng)從 HTTP 向 HTTPS 過(guò)渡。Let’s Encrypt CA 將由非贏利組織 Internet Security Research Group (ISRG) 運(yùn)營(yíng),今天12月4日凌晨項(xiàng)目正式進(jìn)入公測(cè)階段,遂趕緊進(jìn)行申請(qǐng)?jiān)囉靡幌隆?/p>

公司主營(yíng)業(yè)務(wù):成都網(wǎng)站建設(shè)、做網(wǎng)站、移動(dòng)網(wǎng)站開發(fā)等業(yè)務(wù)。幫助企業(yè)客戶真正實(shí)現(xiàn)互聯(lián)網(wǎng)宣傳,提高企業(yè)的競(jìng)爭(zhēng)能力。成都創(chuàng)新互聯(lián)公司是一支青春激揚(yáng)、勤奮敬業(yè)、活力青春激揚(yáng)、勤奮敬業(yè)、活力澎湃、和諧高效的團(tuán)隊(duì)。公司秉承以“開放、自由、嚴(yán)謹(jǐn)、自律”為核心的企業(yè)文化,感謝他們對(duì)我們的高要求,感謝他們從不同領(lǐng)域給我們帶來(lái)的挑戰(zhàn),讓我們激情的團(tuán)隊(duì)有機(jī)會(huì)用頭腦與智慧不斷的給客戶帶來(lái)驚喜。成都創(chuàng)新互聯(lián)公司推出興慶免費(fèi)做網(wǎng)站回饋大家。

        之前我申請(qǐng)證書都是用BS方式,這次是CS方式,感覺挺新鮮。

        我的服務(wù)器環(huán)境 centos6.6

  1. 要安裝python2.7,2.6在申請(qǐng)時(shí)會(huì)報(bào)錯(cuò)

下載地址 https://www.python.org/downloads/release/python-2710/

wget 
tar zxf Python-2.7.10.tgz
cd Python-2.7.10
./configure
make && make install

#把系統(tǒng)python命令指到新版本
which python
/usr/local/bin/python
rm /usr/local/bin/python
ln -s /usr/local/bin/python2.7 /usr/local/bin/python

  2.下載letsencrypt客戶端

yum install -y git
git clone https://github.com/letsencrypt/letsencrypt.git
cd letsencrypt
./letsencrypt-auto --help
Updating letsencrypt and virtual environment dependencies.......
Running with virtualenv: /root/.local/share/letsencrypt/bin/letsencrypt --help

  letsencrypt [SUBCOMMAND] [options] [-d domain] [-d domain] ...

The Let's Encrypt agent can obtain and install HTTPS/TLS/SSL certificates.  By
default, it will attempt to use a webserver both for obtaining and installing
the cert. Major SUBCOMMANDS are:

  (default) run        Obtain & install a cert in your current webserver
  certonly             Obtain cert, but do not install it (aka "auth")
  install              Install a previously obtained cert in a server
  revoke               Revoke a previously obtained certificate
  rollback             Rollback server configuration changes made during install
  config_changes       Show changes made to server config during installation
  plugins              Display information about installed plugins

Choice of server plugins for obtaining and installing cert:

  --apache          Use the Apache plugin for authentication & installation
  --standalone      Run a standalone webserver for authentication
  (nginx support is experimental, buggy, and not installed by default)
  --webroot         Place files in a server's webroot folder for authentication

OR use different plugins to obtain (authenticate) the cert and then install it:

  --authenticator standalone --installer apache

More detailed help:

  -h, --help [topic]    print this message, or detailed help on a topic;
                        the available topics are:

   all, automation, paths, security, testing, or any of the subcommands or
   plugins (certonly, install, nginx, apache, standalone, webroot, etc)

  3.客戶端可以為你提供申請(qǐng)+全自動(dòng)安裝apache/nginx等一條龍服務(wù),這里我選擇DIY,只申請(qǐng),不用麻煩客戶端了,執(zhí)行以下命令

./letsencrypt-auto certonly --manual

輸入你的域名

使用Let's Encrypt客戶端免費(fèi)申請(qǐng)SSL證書

提示是否同意他們記錄你這次請(qǐng)求的ip地址,同意

使用Let's Encrypt客戶端免費(fèi)申請(qǐng)SSL證書

這一步是驗(yàn)證域名所有權(quán),很關(guān)鍵

使用Let's Encrypt客戶端免費(fèi)申請(qǐng)SSL證書

這一步的意思是,客戶端將訪問(wèn)http://www.example.com/.well-known/acme-challenge/xiDWA8FkdWeTua7MIXBpQ3PeLt8jVu5Eimi4-jPsTHs 看看輸出是不是  xiDWA8FkdWeTua7MIXBpQ3PeLt8jVu5Eimi4-jPsTHs.MOcybE5RrQ_NsGgFybrHkVcTSohWn2z0JDfTtQkHKQE

我是提前裝了nginx服務(wù)器,那么只需要在我的網(wǎng)站根目錄下創(chuàng)建目錄和對(duì)應(yīng)內(nèi)容的文件,在公網(wǎng)能訪問(wèn)得到就可以了。

cd /wwwroot/
mkdir -p ./.well-known/acme-challenge/
echo xiDWA8FkdWeTua7MIXBpQ3PeLt8jVu5Eimi4-jPsTHs.MOcybE5RrQ_NsGgFybrHkVcTSohWn2z0JDfTtQkHKQE>./.well-known/acme-challenge/xiDWA8FkdWeTua7MIXBpQ3PeLt8jVu5Eimi4-jPsTHs

試試獲取一下輸出正常了沒
curl 
 
若正常,按回車。(如果還沒裝web服務(wù)器的話可以按照提示執(zhí)行#run only once per server下面的命令)

4.證書獲取成功

IMPORTANT NOTES:
 - Congratulations! Your certificate and chain have been saved at
   /etc/letsencrypt/live/example.com/fullchain.pem. Your cert will
   expire on 2016-03-03. To obtain a new version of the certificate in
   the future, simply run Let's Encrypt again.
 - If like Let's Encrypt, please consider supporting our work by:

   Donating to ISRG / Let's Encrypt:   https://letsencrypt.org/donate
   Donating to EFF:                    https://eff.org/donate-le

后面再發(fā)一篇博文講述如何使用這個(gè)證書。

分享題目:使用Let'sEncrypt客戶端免費(fèi)申請(qǐng)SSL證書
當(dāng)前路徑:http://www.aaarwkj.com/article28/ijhdjp.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供微信公眾號(hào)標(biāo)簽優(yōu)化、網(wǎng)站建設(shè)網(wǎng)站設(shè)計(jì)公司、網(wǎng)站制作、網(wǎng)站營(yíng)銷

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

成都定制網(wǎng)站網(wǎng)頁(yè)設(shè)計(jì)
国内一级片内射免费视频观看| 中文字幕乱码日韩一区| 妇女人妻丰满少妇中文字幕| 亚洲中文字幕一区乱码| 久久九特黄的免费大片| 日产中文乱码字幕无线观看| 字幕日本欧美一区二区| 加勒比人妻一区二区三区| 亚洲小说欧美激情另类| 国产黄色免费精品网站| 国产成人综合欧美日韩另类| 五月婷婷六月丁香俺来也| 2021最新四虎永久免费| 国产色综合一区二区| 国产综合一区在线观看97| 开心久久婷婷综合中文字幕| 欧美精品国产欧美精品国产| 日日夜夜久久一二三区| 98精品熟女亚洲av| 91精品国产欧美在线| 亚洲精品亚洲一区亚洲二区| 好吊妞在线新免费视频| 日韩欧美黄色三级视频| 蜜桃在线视频在线观看| 青青草原在线影视一区| 日韩中文字幕在线乱码| 亚洲精品在线免费av| 国产高清亚洲一区亚洲二区| 欧美国产综合欧美一区二区三区 | 人妻天天爽夜夜爽欧美色| 风韵丰满熟妇老熟女啪啪| 国产老熟女高潮一区二区| 欧美日韩加勒比综合在线| 欧美午夜福利视频电影| 91狠狠综合久久精品| 国内一级黄色片免费观看| 国产成人国产精品国产三级| 久久综合婷婷亚洲色图| 国产丝袜美腿在线观看| 国产日韩欧美 一区二区三区| 中文字幕日日夜夜av|