linux下apache2+php+ssl的安裝

*文
發布: 2023-03-18 08:32:01
原創
2282 人瀏覽過

本文主要介紹了在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的方法

#php中使用OpenSSL產生憑證及加密解密

#nginx 和node在阿里雲部署https方法步驟


#

以上是linux下apache2+php+ssl的安裝的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!