日本好好热aⅴ|国产99视频精品免费观看|日本成人aV在线|久热香蕉国产在线

  • <cite id="ikgdy"><table id="ikgdy"></table></cite>
    1. 西西軟件園多重安全檢測下載網(wǎng)站、值得信賴的軟件下載站!
      軟件
      軟件
      文章
      搜索

      首頁編程開發(fā)其它知識 → Centos6.3下Apache配置基于加密的認(rèn)證https加密證書訪問

      Centos6.3下Apache配置基于加密的認(rèn)證https加密證書訪問

      相關(guān)軟件相關(guān)文章發(fā)表評論 來源:西西整理時間:2013/5/6 8:59:39字體大。A-A+

      作者:西西點擊:12次評論:2次標(biāo)簽: Centos

      • 類型:文件處理大。209KB語言:中文 評分:7.0
      • 標(biāo)簽:
      立即下載

      這里簡單演示一下Apache下基于加密的認(rèn)證訪問----https加密方式訪問。

      1.DNS解析解析情況:

      [root@localhost html]# nslookup www.abc.com

      Server:         192.168.2.115

      Address:        192.168.2.115#53

      Name:   www.abc.com

      Address: 192.168.2.115

      2.安裝Apache SSL支持模塊:# yum install -y mod_ssl (默認(rèn)yum安裝httpd是沒有安裝該模塊的,安裝后自動生產(chǎn)/etc/httpd/conf.d/ssl.conf文件)并生成證書。

      [root@localhost certs]# pwd

      /etc/pki/tls/certs

      [root@localhost certs]# ls

      ca-bundle.crt        index.html      localhost.crt    Makefile

      ca-bundle.trust.crt  localhost1.crt  make-dummy-cert

      [root@localhost certs]# openssl req -utf8 -new -key ../private/localhost.key -x509 -days 3650 -out abc_com.crt

      You are about to be asked to enter information that will be incorporated

      into your certificate request.

      What you are about to enter is what is called a Distinguished Name or a DN.

      There are quite a few fields but you can leave some blank

      For some fields there will be a default value,

      If you enter '.', the field will be left blank.

      -----

      Country Name (2 letter code) [XX]:CN

      State or Province Name (full name) []:510510

      Locality Name (eg, city) [Default City]:GZ

      Organization Name (eg, company) [Default Company Ltd]:ABC.COM

      Organizational Unit Name (eg, section) []:Mr.Zhang

      Common Name (eg, your name or your server's hostname) []:www.abc.com

      Email Address []:root@abc.com

      [root@localhost certs]#

      3.配置Apache,基本配置這里不多說了,下面是配置www.abc.com站點http訪問的情況。

      [root@localhost html]# tail -n 8 /etc/httpd/conf/httpd.conf

      NameVirtualhost 192.168.2.115:80

      <VirtualHost www.abc.com:80>

          ServerAdmin webmaster@dummy-host.example.com

          DocumentRoot /var/www/html

          ServerName www.abc.com

          ErrorLog logs/dummy-host.example.com-error_log

          CustomLog logs/dummy-host.example.com-access_log common

      </VirtualHost>

      [root@localhost html]# tail /var/www/html/index.html                      

      www.abc.com

      [root@localhost html]#

      4.配置Apache支持https訪問www.abc.com站點,編輯 vim /etc/httpd/conf.d/ssl.conf 文件,制定www.abc.com站點https訪問時的相關(guān)信息。添加下面配置。

      <VirtualHost www.abc.com:443>

      DocumentRoot "/var/www/html/www.kuteatest.net"    #//為了顯示效果,這里的站點目錄不一樣,一般情況一個域名應(yīng)該指向同一目錄的。

      ServerName www.abc.com:443

      ErrorLog logs/ssl_error_log

      TransferLog logs/ssl_access_log

      LogLevel warn

      SSLEngine on

      SSLProtocol all -SSLv2

      SSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2:RC4+RSA:+HIGH:+MEDIUM:+LOW

      SSLCertificateFile /etc/pki/tls/certs/abc_com.crt

      SSLCertificateKeyFile /etc/pki/tls/private/localhost.key

      <Files ~ "\.(cgi|shtml|phtml|php3?)$">

          SSLOptions +StdEnvVars

      </Files>

      <Directory "/var/www/cgi-bin">

          SSLOptions +StdEnvVars

      </Directory>

      SetEnvIf User-Agent ".*MSIE.*" \

               nokeepalive ssl-unclean-shutdown \

               downgrade-1.0 force-response-1.0

      CustomLog logs/ssl_request_log \

                "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"

      </VirtualHost>

      5.重啟Apache服務(wù),測試訪問。

      測試http訪問的結(jié)果

      測試https訪問的結(jié)果

      查看證書信息和自建crt信息一致

      https訪問的最終結(jié)果

        hosts修復(fù)軟件
        (60)hosts修復(fù)軟件
        文件是計算機中一個舉足輕重的文件,該文件有一個比較大的特點就是沒有擴展名。經(jīng)常在一些電腦個性技巧以及其他領(lǐng)域方面會用到,西西提供文件修復(fù)工具軟件下載大全。官方介紹是一個沒有擴展名的系統(tǒng)文件,可以用記事本等工具打開,其作用就是將一些常用的網(wǎng)址域名與其對應(yīng)的地址建立一個關(guān)聯(lián)數(shù)據(jù)庫,當(dāng)用戶在瀏覽器中輸入一個需要登錄的網(wǎng)址時,系統(tǒng)會首先自動從文件中尋找對應(yīng)的地址,一旦找到系統(tǒng)會立即打開對應(yīng)網(wǎng)頁,如果沒有找...更多>>

        相關(guān)評論

        閱讀本文后您有什么感想? 已有人給出評價!

        • 8 喜歡喜歡
        • 3 頂
        • 1 難過難過
        • 5 囧
        • 3 圍觀圍觀
        • 2 無聊無聊

        熱門評論

        最新評論

        發(fā)表評論 查看所有評論(2)

        昵稱:
        表情: 高興 可 汗 我不要 害羞 好 下下下 送花 屎 親親
        字?jǐn)?shù): 0/500 (您的評論需要經(jīng)過審核才能顯示)