linux下apache2+php+ssl的安装
程序员文章站
2022-04-09 08:53:25
...
本文主要介绍了在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的安装的详细内容,更多请关注其它相关文章!
上一篇: python之SQLAlchemy ORM示例介绍
下一篇: php each与list用法区别实例
推荐阅读
-
Linux环境下安装Nginx及其使用
-
在Linux上安装和使用Docker的方法
-
[视频教程] ubuntu系统下安装最新版的MySQL
-
linux下安装tomcat安装及配置教程(在linux中怎么安装tomcat)
-
Windows下的PHP安装文件线程安全和非线程安全的区别
-
linux下mysql5.7.17最新稳定版本安装教程
-
Win10 Version 1607中的Linux子系统安装方法详解
-
如何运行openSUSE?Win10中安装SUSE Linux子系统的详细图文教程
-
Linux中安装Python的交互式解释器IPython的教程
-
在Linux 服务器下修改防火墙允许该端口远程访问的方法