Ubuntu Apache2配置SSL证书步骤

602
2025/3/29 6:32:13
栏目: 云计算
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

在Ubuntu系统上为Apache2配置SSL证书的步骤如下:

一、安装Apache2和必要的模块

  1. 打开终端,输入以下命令安装Apache2:
sudo apt update
sudo apt install apache2
  1. 安装SSL模块:
sudo a2enmod ssl

二、获取SSL证书

你可以选择以下几种方式获取SSL证书:

  1. 使用Let’s Encrypt

    • 安装Certbot:

      sudo apt install certbot python3-certbot-apache
      
    • 获取并安装证书:

      sudo certbot --apache
      

      按照提示完成证书的获取和安装。Certbot会自动修改Apache的配置文件以启用HTTPS。

  2. 手动获取证书

    • 生成私钥和CSR:

      openssl req -new -nodes -keyout server.key -out server.csr
      
    • 提交CSR到证书颁发机构获取证书,并将证书文件(crt)和中间证书(ca-bundle)放入 /etc/ssl/certs/ 目录下。

三、配置Apache2使用SSL证书

  1. /etc/apache2/sites-available/ 目录下找到默认的SSL配置文件 default-ssl.conf,使用文本编辑器打开它。

  2. 修改以下参数:

    • SSLCertificateFile:证书文件路径,例如 /etc/letsencrypt/live/example.com/fullchain.pem
    • SSLCertificateKeyFile:证书私钥文件路径,例如 /etc/letsencrypt/live/example.com/privkey.pem
    • SSLCertificateChainFile:证书链文件路径,例如 /etc/letsencrypt/live/example.com/chain.pem

    示例配置:

    <VirtualHost *:443>
        ServerAdmin webmaster@example.com
        ServerName example.com
        DocumentRoot /var/www/html
    
        SSLEngine on
        SSLCertificateFile /etc/letsencrypt/live/example.com/fullchain.pem
        SSLCertificateKeyFile /etc/letsencrypt/live/example.com/privkey.pem
        SSLCertificateChainFile /etc/letsencrypt/live/example.com/chain.pem
    
        <Directory /var/www/html>
            Options Indexes FollowSymLinks
            AllowOverride All
            Require all granted
        </Directory>
    
        ErrorLog ${APACHE_LOG_DIR}/error.log
        CustomLog ${APACHE_LOG_DIR}/access.log combined
    </VirtualHost>
    
  3. 保存并退出编辑器。

四、启用HTTPS并重启Apache2

  1. 启用HTTPS模块(如果尚未启用):

    sudo a2enmod ssl
    
  2. 重启Apache2服务以使配置生效:

    sudo systemctl restart apache2
    

五、验证SSL证书配置

打开浏览器,访问你的网站(例如 https://example.com),如果一切正常,你应该会看到浏览器地址栏中的锁图标,表示SSL证书已正确安装。

六、可选:设置HTTP重定向为HTTPS

为了确保所有HTTP请求都被重定向到HTTPS,你可以在Apache配置文件中添加重定向规则。编辑 /etc/apache2/sites-available/000-default.conf 文件,在 <VirtualHost *:80> 标签内添加以下内容:

RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

完成后,重启Apache服务以使更改生效:

sudo systemctl restart apache2

以上步骤涵盖了在Ubuntu系统上为Apache2配置SSL证书的基本流程。具体步骤可能会因你使用的Web服务器和证书类型而有所不同,但大体流程是相似的。

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: Java在Ubuntu中如何实现网络通信