如何在Centos 8上给Apache安装 Let's Encrypt SSL证书,并且自动获取更新

admin 2021-4-9 60689



原文地址:如何在Centos 8上给Apache安装 Let's Encrypt SSL证书,并且自动获取更新(链接已失效,大家自行百度)

本教程说明了如何在运行Apache作为Web服务器的CentOS 8上安装免费的Let's Encrypt SSL证书。我们将使用certbot工具获取并更新证书。

Let's Encrypt是由Internet安全研究小组(ISRG)开发的免费,自动化和开源的证书颁发机构,它提供免费的SSL证书。

Let's Encrypt颁发的证书受到所有主要浏览器的信任,并且自颁发之日起有效期为90天。

本教程说明了如何在运行Apache作为Web服务器的CentOS 8上安装免费的Let's Encrypt SSL证书。我们将使用certbot工具获取并更新证书。

先决条件

在继续之前,请确保满足以下先决条件:

  • 有一个指向您的公共服务器IP的域名。我们将使用example.com
  • Apache已安装并在服务器上运行,并为您的域配置了虚拟主机。
  • 端口80和443在防火墙中打开。

安装以下SSL加密的Web服务器所需的软件包:

sudo dnf install mod_ssl openssl

安装mod_ssl软件包后,应为本地主机创建一个自签名密钥和证书文件。如果没有自动创建文件,则可以使用以下openssl命令创建文件:

sudo openssl req -newkey rsa:4096 -x509 -sha256 -days 3650 -nodes \
  -out /etc/pki/tls/certs/localhost.crt \
  -keyout /etc/pki/tls/private/localhost.key

安装Certbot

Certbot是一个免费的命令行工具,它简化了从服务器获取和续订Let's Encrypt SSL证书并自动启用HTTPS的过程。

certbot软件包未包含在标准CentOS 8存储库中,但可以从供应商的网站上下载。

wget以root或sudo用户身份运行以下命令,将certbot脚本下载到该/usr/local/bin目录:

sudo wget -P /usr/local/bin https://dl.eff.org/certbot-auto

下载完成后,将文件设置为可执行文件:

sudo chmod +x /usr/local/bin/certbot-auto

生成强 Dh(Diffie-Hellman)组

Diffie-Hellman密钥交换(DH)是一种在不安全的通信通道上安全地交换加密密钥的方法。生成一组新的2048位DH参数以增强安全性:

sudo openssl dhparam -out /etc/ssl/certs/dhparam.pem 2048

您最多可以将大小更改为4096位,但是生成时间可能会超过30分钟,具体取决于系统熵。

获取“让我们加密SSL”证书

为了获得该域的SSL证书,我们将使用Webroot插件,该插件通过在${webroot-path}/.well-known/acme-challenge目录中创建用于验证请求的域的临时文件来工作。Let's Encrypt服务器对临时文件发出HTTP请求,以验证请求的域是否解析为certbot运行的服务器。

为了简化设置,我们将所有HTTP请求映射.well-known/acme-challenge到一个目录/var/lib/letsencrypt

运行以下命令以创建目录并使该目录可用于Apache服务器。

sudo mkdir -p /var/lib/letsencrypt/.well-known
sudo chgrp apache /var/lib/letsencrypt
sudo chmod g+s /var/lib/letsencrypt

为避免重复代码并使配置更易于维护,请创建以下两个配置片段:

/etc/httpd/conf.d/letsencrypt.conf

Alias /.well-known/acme-challenge/ "/var/lib/letsencrypt/.well-known/acme-challenge/"
<Directory "/var/lib/letsencrypt/">
    AllowOverride None
    Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
    Require method GET POST OPTIONS
</Directory>

/etc/httpd/conf.d/ssl-params.conf

SSLCipherSuite EECDH+AESGCM:EDH+AESGCM
# Requires Apache 2.4.36 & OpenSSL 1.1.1
SSLProtocol -all +TLSv1.3 +TLSv1.2
SSLOpenSSLConfCmd Curves X25519:secp521r1:secp384r1:prime256v1
# Older versions
# SSLProtocol All -SSLv2 -SSLv3 -TLSv1 -TLSv1.1
SSLHonorCipherOrder On
Header always set Strict-Transport-Security "max-age=63072000; includeSubDomains; preload"
Header always set X-Frame-Options DENY
Header always set X-Content-Type-Options nosniff
# Requires Apache >= 2.4
SSLCompression off
SSLUseStapling on
SSLStaplingCache "shmcb:logs/stapling-cache(150000)"
# Requires Apache >= 2.4.11
SSLSessionTickets Off

SSLOpenSSLConfCmd DHParameters "/etc/ssl/certs/dhparam.pem"

上面的代码段使用的是Cipherli.st建议的削片机。它启用OCSP装订,HTTP严格传输安全性(HSTS),Dh密钥,并强制执行少量以安全性为重点的HTTP标头。

重新加载Apache配置以使更改生效:

sudo systemctl reload httpd

现在,您可以使用webroot插件运行certbot脚本并获取SSL证书文件:

sudo /usr/local/bin/certbot-auto certonly --agree-tos --email admin@example.com --webroot -w /var/lib/letsencrypt/ -d example.com -d www.example.com

成功后,certbot将打印以下消息:

IMPORTANT NOTES:
 - Congratulations! Your certificate and chain have been saved at:
   /etc/letsencrypt/live/example.com/fullchain.pem
   Your key file has been saved at:
   /etc/letsencrypt/live/example.com/privkey.pem
   Your cert will expire on 2020-01-26. To obtain a new or tweaked
   version of this certificate in the future, simply run certbot-auto
   again. To non-interactively renew *all* of your certificates, run
   "certbot-auto renew"
 - Your account credentials have been saved in your Certbot
   configuration directory at /etc/letsencrypt. You should make a
   secure backup of this folder now. This configuration directory will
   also contain certificates and private keys obtained by Certbot so
   making regular backups of this folder is ideal.
 - If you like Certbot, please consider supporting our work by:

   Donating to ISRG / Let's Encrypt:   https://letsencrypt.org/donate
   Donating to EFF:                    https://eff.org/donate-le

现在已完成所有设置,按如下所示编辑域虚拟主机配置:

/etc/httpd/conf.d/example.com.conf

<VirtualHost *:80>
  ServerName example.com
  ServerAlias www.example.com

  Redirect permanent / https://example.com/
</VirtualHost>

<VirtualHost *:443>
  ServerName example.com
  ServerAlias www.example.com

  Protocols h2 http:/1.1

  <If "%{HTTP_HOST} == 'www.example.com'">
    Redirect permanent / https://example.com/
  </If>

  DocumentRoot /var/www/example.com/public_html
  ErrorLog /var/log/httpd/example.com-error.log
  CustomLog /var/log/httpd/example.com-access.log combined

  SSLEngine On
  SSLCertificateFile /etc/letsencrypt/live/example.com/fullchain.pem
  SSLCertificateKeyFile /etc/letsencrypt/live/example.com/privkey.pem

  # Other Apache Configuration

</VirtualHost>

上面的配置是强制HTTPS并从www重定向到非www版本。它还启用HTTP / 2,这将使您的网站更快,更健壮。随意根据您的需要调整配置。

重新启动Apache服务:

sudo systemctl restart httpd

现在,您可以使用打开网站https://,您会注意到一个绿色的锁定图标。

如果您使用SSL Labs Server Test测试您的域,则将获得A +等级,如下所示:

如何在Centos 8上给Apache安装 Let's Encrypt SSL证书,并且自动获取更新

自动更新让我们加密SSL证书

让我们加密的证书有效期为90天。要在证书过期之前自动更新证书,我们将创建一个cronjob,该证书每天运行两次,并在证书到期前30天自动更新任何证书。

运行以下命令以创建一个新的cronjob,它将更新证书并重新启动Apache:

echo "0 0,12 * * * root python3 -c 'import random; import time; time.sleep(random.random() * 3600)' && /usr/local/bin/certbot-auto -q renew --renew-hook \"systemctl reload httpd\"" | sudo tee -a /etc/crontab > /dev/null

要测试续订过程,请使用certbot命令,然后使用--dry-run开关:

sudo /usr/local/bin/certbot-auto renew --dry-run

如果没有错误,则表示更新过程成功。

结论

在本教程中,我们讨论了如何在CentOS上使用Let's Encrypt客户端certbot获得您域的SSL证书。我们还向您展示了如何配置Apache以使用证书,以及如何设置cronjob来自动更新证书。

要了解有关Certbot脚本的更多信息,请访问Certbot文档


最新回复 (0)
返回