当前位置:   article > 正文

HTTP HTTPS 创建CA证书_httpca

httpca

目录

http

1、安装apache环境依赖

2、基本设置

3、配置主文件

4、配置完重启HTTP生效

https的实现

1、安装专门的mod_ssl模块

2、申请CA证书

3、编辑.conf配置文件

4、重启服务

使用IE浏览器访问测试


  • http

1、安装apache环境依赖

# yum -y install httpd
# systemctl start httpd
# systemctl enable httpd

2、基本设置

# systemctl stop firewalld
# setenforce 0
或者加入防火墙允许
# firewall-cmd --permanent --add-service=http
# firewall-cmd --reload   //立即生效
# firewall-cmd --list-all   //查看
# mkdir /home/http
# echo "welcome to my web" > /home/http/index.html

3、配置主文件

# vi /etc/httpd/conf/httpd.conf
注:可以去除注释行再修改
mv /etc/httpd/conf/httpd.conf /etc/httpd/conf/httpd.conf.bak
grep -v “#” /etc/httpd/conf/httpd.conf.bak > /etc/httpd/conf/httpd.conf
修改以下内容:
ServerName www.lql.com:80
DocumentRoot "/home/http"
<Directory "/var/www/html">   修改成  <Directory "/home/http">

附:主配置文件比较常用参数,按需添加

ServerRoot  xx  服务目录                      ServerAdmin  xx  管理员邮箱
User   xx  运行服务的用户                      Group    xxx  运行服务的用户组
ServerName   xx  网站服务器的域名      DocumentRoot   xx  文档根目录(网站数据目录)
Directory  xx 网站数据目录的权限            Listen  xx  监听的IP地址和端口号
DirectoryIndex   xx  默认的索引页页面           ErrorLog   xx 错误日志文件CustomLog 
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/732605
推荐阅读
相关标签
  

闽ICP备14008679号