Apache配置ssl证书-实现https访问

文章目录

  • 一、准备工作
    • [1.1 安装Apache服务器](#1.1 安装Apache服务器)
    • [1.2 Apache服务器上已经开启了443端口](#1.2 Apache服务器上已经开启了443端口)
    • [1.3 Apache服务器上已安装了mod_ssl.so模块](#1.3 Apache服务器上已安装了mod_ssl.so模块)
    • [1.4 获取SSL证书](#1.4 获取SSL证书)
  • 二、配置apache
    • [2.1 配置apache文件](#2.1 配置apache文件)
    • [2.2 生效配置文件](#2.2 生效配置文件)

一、准备工作

1.1 安装Apache服务器

复制代码
yum install httpd -y

1.2 Apache服务器上已经开启了443端口

443为HTTPS服务的默认端口

1.3 Apache服务器上已安装了mod_ssl.so模块

启用SSL功能,安装mod_ssl.so模块

复制代码
yum install -y mod_ssl

1.4 获取SSL证书

使用Certbot签发和续费泛域名SSL证书:https://blog.csdn.net/cljdsc/article/details/133461361

二、配置apache

2.1 配置apache文件

vhost的域名配置文件.conf,在目录:/etc/httpd/conf.d

  • HTTP配置:

    Listen 80

    指定域名

    ServerName www.example.com

    指定文档根目录

    DocumentRoot /var/www/html

    是否启用访问日志

    CustomLog /var/log/httpd/access.log combined

    指定错误日志路径

    ErrorLog /var/log/httpd/error.log

    配置虚拟主机

    <VirtualHost *:80>
    ServerAdmin admin@example.com
    DocumentRoot /var/www/html/project

    复制代码
      # 访问权限
      <Directory /var/www/html/project>
          Options Indexes FollowSymLinks MultiViews
          AllowOverride All
          Order allow,deny
          allow from all
          Require all granted
      </Directory>
    
      # 使用PHP解析器处理.php文件
      <FilesMatch \.php$>
          SetHandler "proxy:unix:/run/php-fpm/php-fpm.sock|fcgi://localhost/"
      </FilesMatch>
    
      # 定义PHP脚本的目录索引
      DirectoryIndex index.php index.html
      
      # 自定义错误页面
      ErrorDocument 404 /error_404.html
      
      # 设置HTTP头信息
      Header set X-Content-Type-Options "nosniff"
      Header set X-XSS-Protection "1; mode=block"
  • HTTPS配置:

    <VirtualHost *:443>
    DocumentRoot /var/www/html/project
    ServerName www.cpayfinance.com
    ServerAlias www.cpayfinance.com
    SSLEngine on
    SSLCertificateFile /etc/letsencrypt/live/cpayfinance.com/cert.pem
    SSLCertificateKeyFile /etc/letsencrypt/live/cpayfinance.com//privkey.pem
    SSLCertificateChainFile /etc/letsencrypt/live/cpayfinance.com//chain.pem

    访问权限

    复制代码
      <Directory /var/www/html/project>
          Options Indexes FollowSymLinks MultiViews
          AllowOverride All
          Order allow,deny
          allow from all
          Require all granted
      </Directory>
    
      # 使用PHP解析器处理.php文件
      <FilesMatch \.php$>
          SetHandler "proxy:unix:/run/php-fpm/php-fpm.sock|fcgi://localhost/"
      </FilesMatch>
    
      # 定义PHP脚本的目录索引
      DirectoryIndex index.php index.html
    
      # 自定义错误页面
      ErrorDocument 404 /error_404.html
    
      # 设置HTTP头信息
      Header set X-Content-Type-Options "nosniff"
      Header set X-XSS-Protection "1; mode=block"
  • HTTP & HTTPS 配置

    Listen 80

    指定域名

    ServerName www.cpayfinance.com

    指定文档根目录

    DocumentRoot /var/www/html

    是否启用访问日志

    CustomLog /var/log/httpd/access.log combined

    指定错误日志路径

    ErrorLog /var/log/httpd/error.log

    配置虚拟主机

    <VirtualHost *:80>
    ServerAdmin admin@example.com
    DocumentRoot /var/www/html/project

    复制代码
      # 访问权限
      <Directory /var/www/html/project>
          Options Indexes FollowSymLinks MultiViews
          AllowOverride All
          Order allow,deny
          allow from all
          Require all granted
      </Directory>
    
      # 使用PHP解析器处理.php文件
      <FilesMatch \.php$>
          SetHandler "proxy:unix:/run/php-fpm/php-fpm.sock|fcgi://localhost/"
      </FilesMatch>
    
      # 定义PHP脚本的目录索引
      DirectoryIndex index.php index.html
      
      # 自定义错误页面
      ErrorDocument 404 /error_404.html
      
      # 设置HTTP头信息
      Header set X-Content-Type-Options "nosniff"
      Header set X-XSS-Protection "1; mode=block"

    <VirtualHost *:443>
    DocumentRoot /var/www/html/project
    ServerName www.cpayfinance.com
    ServerAlias www.cpayfinance.com
    SSLEngine on
    SSLCertificateFile /etc/letsencrypt/live/cpayfinance.com/cert.pem
    SSLCertificateKeyFile /etc/letsencrypt/live/cpayfinance.com//privkey.pem
    SSLCertificateChainFile /etc/letsencrypt/live/cpayfinance.com//chain.pem

    访问权限

    复制代码
      <Directory /var/www/html/project>
          Options Indexes FollowSymLinks MultiViews
          AllowOverride All
          Order allow,deny
          allow from all
          Require all granted
      </Directory>
    
      # 使用PHP解析器处理.php文件
      <FilesMatch \.php$>
          SetHandler "proxy:unix:/run/php-fpm/php-fpm.sock|fcgi://localhost/"
      </FilesMatch>
    
      # 定义PHP脚本的目录索引
      DirectoryIndex index.php index.html
    
      # 自定义错误页面
      ErrorDocument 404 /error_404.html
    
      # 设置HTTP头信息
      Header set X-Content-Type-Options "nosniff"
      Header set X-XSS-Protection "1; mode=block"

2.2 生效配置文件

  • 查看配置文件是否正常

    apachectl -t

    Syntax OK

  • 重启apache配置

    systemctl restart httpd

相关推荐
愤怒的苹果ext8 小时前
Apache Superset 使用
apache·doris·bi·superset·ai bi
qq_185198699 小时前
骆驼任务Flowable + Apache Camel 集成
spring·apache·flowable
ClickHouseDB10 小时前
ClickHouse 十年开源,今非昔比!
clickhouse·开源·apache
代码不会写1 天前
Apache Iceberg:架构原理、读写机制、性能优化与生态
性能优化·架构·apache·iceberg
Flandern11111 天前
HTTPS(TLS 1.3)完整流程
数据库·网络协议·计算机网络·https
沐苏瑶1 天前
计算机网络核心笔记:打通 TCP/UDP 与 HTTP/HTTPS 底层逻辑(重点上)
笔记·计算机网络·http·https
2501_915918412 天前
深入对比iOS开发中常用性能监控工具的底层原理与优缺点分析
android·ios·小程序·https·uni-app·iphone·webview
agathakuan2 天前
Wireshark 解密並導出TLS 1.2 / TLS 1.3 明文的方法(可控制 Client 端)
c语言·wireshark·ssl·openwrt
Gent_倪2 天前
数据治理之安全管理:Apache Ranger
apache
huainingning2 天前
防火墙重启后ssl登录提示证书过期临时解决方法
linux·服务器·ssl