apache https配置詳細(xì)步驟講解
更新時(shí)間:2010年06月21日 14:36:14 作者:
主要講述在windows下apache配置SSL以實(shí)現(xiàn)http轉(zhuǎn)換為https
SSL: SSl是為Http傳輸提供安全的協(xié)議,通過證書認(rèn)證來確??蛻舳撕途W(wǎng)站服務(wù)器之間的數(shù)據(jù)是安全。也就是說在SSL下http傳輸是安全的,我們成為 https.
配置過程如下:
步驟一:安裝apache,使其支持SSL,并安裝php
1.安裝配有SSL模塊的apache,apache_2.2.8-win32-x86-openssl-0.9.8g
2.配置apache以支持SSL:打開apache的配置文件conf/httpd.conf
1)LoadModule ssl_module modules/mod_ssl.so
Include conf/extra/httpd-ssl.conf
去掉兩行前面的#
2)注意修改httpd-ssl.conf 文件里的兩個(gè)字段:
SSLCertificateFile "C:/Apache2.2/conf/server.crt"
SSLCertificateKeyFile "C:/Apache2.2/conf/server.key"
3.安裝php,整合apache和Php(略)
為下面你所生成的證書和密鑰地址。
步驟二:為網(wǎng)站服務(wù)器生成證書及私鑰文件
1. 生成服務(wù)器的私鑰
進(jìn)入命令行:
D:\local\apache2\bin\openssl genrsa -out server.key 1024
在當(dāng)前目錄下生成了一個(gè)server.key生成簽署申請(qǐng)
2. 生成簽署申請(qǐng)
D:\local\apache2\bin>openssl req -new –out server.csr -key server.key -config ..\conf\openssl.cnf
此時(shí)生成簽署文件server.csr.
步驟三:通過CA為網(wǎng)站服務(wù)器簽署證書
1.生成CA私鑰
D:\local\apache2\bin\openssl genrsa -out ca.key 1024
多出ca.key文件
2.利用CA的私鑰產(chǎn)生CA的自簽署證書
D:\local\apache2\bin\openssl req -new -x509 -days 365 -key ca.key -out ca.crt -config ..\conf\openssl.cnf
此時(shí)需要輸入一些信息,注意Common Name為服務(wù)器域名,如果在本機(jī),為本機(jī)IP。
3.CA為網(wǎng)站服務(wù)器簽署證書
D:\local\apache2\bin\openssl ca -in server.csr -out server.crt -cert ca.crt -keyfile ca.key -config ..\conf\openssl.cnf
但,此時(shí)會(huì)報(bào)錯(cuò):
于是在在當(dāng)前目錄創(chuàng)建demoCA,里面創(chuàng)建以下文件,index.txt,serial:serial內(nèi)容為01,其他為空,以及文件夾 newcert.再執(zhí)行一遍,即可生成server.crt文件
步驟四:然后將 server.crt,server.key復(fù)制到apache的conf文件夾下,重啟apache
步驟五:配置windows.
打開C:\WINDOWS\system32\drivers\etc下的etc文件:
修改為:
127.0.0.1 next0-testing.acgchina.8866.org
127.0.0.1 pp-testing.acgchina.8866.org
127.0.0.1 tlink-testing.acgchina.8866.org
步驟六:
在apache下寫入iframe網(wǎng)頁,并將testlink,projectpier也放入。
<iframe src="https://pp-testing.acgchina.8866.org/projectpier/index.php" width="300" height="300"></iframe>
<iframe src="https://tlink-testing.acgchina.8866.org/testlink/index.php" width="300" height="300"></iframe>
于是訪問https://next0-testing.acgchina.8866.org能看到正確的顯示。
配置過程如下:
步驟一:安裝apache,使其支持SSL,并安裝php
1.安裝配有SSL模塊的apache,apache_2.2.8-win32-x86-openssl-0.9.8g
2.配置apache以支持SSL:打開apache的配置文件conf/httpd.conf
1)LoadModule ssl_module modules/mod_ssl.so
Include conf/extra/httpd-ssl.conf
去掉兩行前面的#
2)注意修改httpd-ssl.conf 文件里的兩個(gè)字段:
SSLCertificateFile "C:/Apache2.2/conf/server.crt"
SSLCertificateKeyFile "C:/Apache2.2/conf/server.key"
3.安裝php,整合apache和Php(略)
為下面你所生成的證書和密鑰地址。
步驟二:為網(wǎng)站服務(wù)器生成證書及私鑰文件
1. 生成服務(wù)器的私鑰
進(jìn)入命令行:
D:\local\apache2\bin\openssl genrsa -out server.key 1024
在當(dāng)前目錄下生成了一個(gè)server.key生成簽署申請(qǐng)
2. 生成簽署申請(qǐng)
D:\local\apache2\bin>openssl req -new –out server.csr -key server.key -config ..\conf\openssl.cnf
此時(shí)生成簽署文件server.csr.
步驟三:通過CA為網(wǎng)站服務(wù)器簽署證書
1.生成CA私鑰
D:\local\apache2\bin\openssl genrsa -out ca.key 1024
多出ca.key文件
2.利用CA的私鑰產(chǎn)生CA的自簽署證書
D:\local\apache2\bin\openssl req -new -x509 -days 365 -key ca.key -out ca.crt -config ..\conf\openssl.cnf
此時(shí)需要輸入一些信息,注意Common Name為服務(wù)器域名,如果在本機(jī),為本機(jī)IP。
3.CA為網(wǎng)站服務(wù)器簽署證書
D:\local\apache2\bin\openssl ca -in server.csr -out server.crt -cert ca.crt -keyfile ca.key -config ..\conf\openssl.cnf
但,此時(shí)會(huì)報(bào)錯(cuò):
于是在在當(dāng)前目錄創(chuàng)建demoCA,里面創(chuàng)建以下文件,index.txt,serial:serial內(nèi)容為01,其他為空,以及文件夾 newcert.再執(zhí)行一遍,即可生成server.crt文件
步驟四:然后將 server.crt,server.key復(fù)制到apache的conf文件夾下,重啟apache
步驟五:配置windows.
打開C:\WINDOWS\system32\drivers\etc下的etc文件:
修改為:
127.0.0.1 next0-testing.acgchina.8866.org
127.0.0.1 pp-testing.acgchina.8866.org
127.0.0.1 tlink-testing.acgchina.8866.org
步驟六:
在apache下寫入iframe網(wǎng)頁,并將testlink,projectpier也放入。
<iframe src="https://pp-testing.acgchina.8866.org/projectpier/index.php" width="300" height="300"></iframe>
<iframe src="https://tlink-testing.acgchina.8866.org/testlink/index.php" width="300" height="300"></iframe>
于是訪問https://next0-testing.acgchina.8866.org能看到正確的顯示。
相關(guān)文章
阿里云基于CentOS用vsftpd搭建FTP服務(wù)器
這篇文章主要介紹了阿里云CentOS系統(tǒng)yum方式安裝vsftpd的相關(guān)資料,最近想要了解的朋友可以了解一下。2016-10-10
centos下簡(jiǎn)單配置安裝Squid 3.0反向代理
以下安裝及配置均為Sudu所在公司應(yīng)用中使用的腳本,希望高手們能指正我的一些不足。如果測(cè)試過程中發(fā)現(xiàn)了問題請(qǐng)回復(fù)或者聯(lián)系我。2010-12-12
Linux常見英文報(bào)錯(cuò)中文翻譯(菜鳥必知)
這篇文章主要介紹了Linux常見英文報(bào)錯(cuò)中文翻譯,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2019-04-04
linux系統(tǒng)用戶管理與grep正則表達(dá)式示例教程
這篇文章主要給大家介紹了關(guān)于linux系統(tǒng)用戶管理與grep正則表達(dá)式的相關(guān)資料,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家學(xué)習(xí)或者使用linux系統(tǒng)具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧。2018-03-03

