本文主要介紹了在linux下安裝apache2+php+ssl的細節與設定。
步驟:
1.下載並安裝openssl
2.安裝apache2
./configure --prefix=你打算安装apache2的目录 --with-openssl=安装了openssl的目录 --with-apr=/usr/local/apr-httpd/ --with-apr- util=/usr/local/apr-util-httpd/ --enable-mods-shared=all --enable-ssl --enable-so --enable-cache --enable-file-cache --enable-mem-cache --enable-disk-cache
3.安裝php
./configure --with-apxs2=安装了apache2的目录
4.製作憑證
CA的憑證檔案cacert.pem
# cd /usr/share/ssl/misc # ./CA -newca
憑證要求newreq.pem
# ./CA -newreq
簽署憑證newcert.pem
# ./CA -sign # mkdir /usr/local/apache2/conf/ssl.crt/ # mkdir /usr/local/apache2/conf/ssl.key/ # cp newcert.pem /usr/local/apache2/conf/ssl.crt/server.pem # cp newreq.pem /usr/local/apache2/conf/ssl.key/server.pem
5.修改apache設定檔
更改伺服器的憑證檔案的相關設定
# vi /usr/local/apache2/conf/extra/httpd-ssl.conf
SSLCertificateFile /usr/local/apache2/conf/ssl.crt/server.pem SSLCertificateKeyFile /usr/local/apache2/conf/ssl.key/server.pem
<Directory "你的ssl根目录"> Options -Indexes AllowOverride None Order allow,deny Allow from all </Directory>
6.啟動apache+ssl
HTTPD啟動時需要輸入口令
備註:
開啟連接埠的指令:
iptables -t filter -A INPUT -d 192.168.0.5 -p tcp --dport 8080 -j ACCEPT
參考如下資料
#1. http://www.linuxdiyf.com/viewarticle.php?id=66493
2 . http://man.chinaunix.net/newsoft/ApacheMenual_CN_2.2new/ssl/ssl_howto.html
相關閱讀:
windows伺服器中偵測PHP SSL是否開啟以及開啟SSL的方法
以上是linux下apache2+php+ssl的安裝的詳細內容。更多資訊請關注PHP中文網其他相關文章!