gpt4 book ai didi

nginx - 让我们加密未经授权的 403 禁止

转载 作者:行者123 更新时间:2023-12-04 17:30:14 28 4
gpt4 key购买 nike

在服务器上,安装了 Nginx。
Let's Encrypt 在 www.domain.com 上运行良好,但不适用于 static.domain.com

使用 PuTTY,当我输入时:sudo letsencrypt certonly -a webroot --webroot-path=/var/www/site/domain -d static.domain.com -d domain.com -d www.domain.com
我有以下问题:

Failed authorization procedure. static.domain.com (http-01): urn:acme:error:unauthorized :: The client lacks sufficient authorization :: Invalid response from http://static.domain.com/.well-known/acme-challenge/c6zngeBwPq42KLXT2ovW-bVPOQ0OHuJ7Fw_FbfL8XfY: "<html>
<head><title>403 Forbidden</title></head>
<body bgcolor="white">
<center><h1>403 Forbidden</h1></center>
<hr><center>"

IMPORTANT NOTES:
- The following errors were reported by the server:

Domain: static.domain.com
Type: unauthorized
Detail: Invalid response from
http://static.domain.com/.well-known/acme-challenge/c6zngeBwPq42KLXT2ovW-bVPOQ0OHuJ7Fw_FbfL8XfY:
"<html>
<head><title>403 Forbidden</title></head>
<body bgcolor="white">
<center><h1>403 Forbidden</h1></center>
<hr><center>"

To fix these errors, please make sure that your domain name was
entered correctly and the DNS A record(s) for that domain
contain(s) the right IP address.

有人知道可能是什么问题吗?

最佳答案

当我第一次尝试在我的网站上安装证书时,我从 certbot 收到了相同的错误消息。

检查 Web 服务器上的原因

我使用的是 apache2,而不是 nginx。我查看了 /var/log/apache2/error.log 中的日志对于与我网站上的 403 Forbidden 事件相关的 apache2 错误消息,我发现:

[Sun Aug 26 14:16:24.239964 2018] [core:error] [pid 12345] (13)Permission denied: [client 12.34.56.78:1234] AH00035: access to /.well-known/acme-challenge/5PShRrf3tR3wmaDw1LOKXhDOt9QwyX3EVZ13JklRJHs denied (filesystem path '/var/lib/letsencrypt/http_challenges') because search permissions are missing on a component of the path

权限和访问问题

我用谷歌搜索了这个错误信息,发现 apache2 无法读取上面提到的目录(例如 /var/lib/letsencrypt/http_challenges ),因为权限不正确,例如:
$ sudo ls -la /var/lib/letsencrypt/
total 16
drwxr-x--- 4 root root 4096 Aug 26 14:31 .
drwxr-xr-x 72 root root 4096 Aug 18 00:48 ..
drwxr-x--- 27 root root 4096 Aug 26 14:26 backups
drwxr-xr-x 2 root root 4096 Aug 26 14:27 http_challenges

所以,根据上面带有点( . )的行代表 letsencrypt具有权限的文件夹 rwxr-x--- , 除了 root 用户之外没有人可以读取它的内容。为了纠正权限,我只是做了:

解决方案
$ sudo chmod o+rx /var/lib/letsencrypt

这改变了上面的 $ ls命令输出到:
$ ls -la /var/lib/letsencrypt/
total 16
drwxr-xr-x 4 root root 4096 Aug 26 14:31 .
drwxr-xr-x 72 root root 4096 Aug 18 00:48 ..
drwxr-x--- 27 root root 4096 Aug 26 14:26 backups
drwxr-xr-x 2 root root 4096 Aug 26 14:27 http_challenges

现在,上面带有点 (.) 的行代表 letsencrypt目录表示 rwxr-xr-x ,以便“其他用户”(例如 apache2 的用户 www-data)现在可以读取和通过 letsencrypt目录。

然后certbot按预期工作。

关于nginx - 让我们加密未经授权的 403 禁止,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42933438/

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