gpt4 book ai didi

apache - 让我们在 Apache 上加密配置

转载 作者:太空宇宙 更新时间:2023-11-03 13:12:01 25 4
gpt4 key购买 nike

当我运行时

./letsencrypt-auto

我可以选择我的域,但在下一步中它会失败

IMPORTANT NOTES:
- The following 'urn:acme:error:connection' errors were reported by
the server:

Domains: xx.co.uk
Error: The server could not connect to the client for DV

apache 是否需要监听 443 端口,否则还有什么问题?

  • Apache 2.2、Ubuntu 14 LTS Trusty

最佳答案

我刚开始使用 Let's Encrypt。我的服务器在 Ubuntu 12.04 上运行 Apache 2.2。我发现使用 Let's Encrypt certonly --webroot 模式要容易得多。这是一个例子:

./letsencrypt-auto certonly --webroot \
--renew-by-default --agree-tos \
--email postmaster@analysisandsolutions.com \
-w /var/www/www.analysisandsolutions.com/public_html \
-d www.analysisandsolutions.com -d analysisandsolutions.com

然后我编辑了 sites-available 中的相关虚拟主机文件以包含:

SSLCertificateFile /etc/letsencrypt/live/www.analysisandsolutions.com/cert.pem
SSLCertificateChainFile /etc/letsencrypt/live/www.analysisandsolutions.com/chain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/www.analysisandsolutions.com/privkey.pem

最后调用service apache2 reload

我还将生成的证书用于 Postfix SMTP 和 Dovecot IMAP 连接。

我做了一个shell script以简化流程。有关所有这些的更多详细信息,请参见 on my blog .

关于apache - 让我们在 Apache 上加密配置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34219618/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com