gpt4 book ai didi

ubuntu - Certbot/LetsEncrypt 隐私错误

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

我已经在我的服务器上安装了 SSL 来保护我的域,现在发生的事情是我在 Chrome 等中遇到了这个错误:

Attackers might be trying to steal your information from example.com (for example, passwords, messages, or credit cards). NET::ERR_CERT_AUTHORITY_INVALID

所以我发现它与有关,但我不知道如何解决这个问题。

我用来安装 SSL 的命令:./certbot-auto certonly --standalone --email pligthart@live.nl -d leeshetetiket.nl -d www.leeshetetiket.nl -d product.leeshetetiket。荷兰

我在 Ubuntu 服务器上运行 nginx

我希望有人能解决这个问题。

最佳答案

这是一个基本的 nginx ssl 配置示例

    server {
listen 443;
server_name example.com;

ssl on;
ssl_certificate /etc/letsencrypt/live/example.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/example.com/privkey.pem;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
}

您必须在虚拟主机的配置文件中配置以启用 ssl 并配置正确的证书文件以使 https 正常工作。

查看 nginx 文档 here .

关于ubuntu - Certbot/LetsEncrypt 隐私错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37987616/

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