gpt4 book ai didi

nginx - Letsencrypt certbot-nginx 插件。它是如何工作的?

转载 作者:行者123 更新时间:2023-12-05 00:52:52 24 4
gpt4 key购买 nike

我成功使用 certbot-nginx 插件。

我知道it是开源的并托管在 github 上。

但是我没有足够的技能来分析这段代码。

例如:

我有几个由 nginx 代理的内部站点。所有虚拟主机配置都具有以下匿名访问限制:

allow 192.168.1.0/24;
allow 192.168.0.0/24;
allow 10.88.0.0/16;
allow 127.0.0.1;
# gate1.example.com
allow X.X.X.X;
# gate2.example.com
allow X.X.X.X;
# other gate's
# .......
deny all;

此访问限制禁止 letencrypt 服务器以及所有其他未定义的主机。

但是 certbot renew --nginx正常执行证书更新。

它是如何工作的 ?

如果它是安全的?

最佳答案

我自己也在问同样的问题,所以我做了一些挖掘,这是我发现的:
Certbot 主要使用 80 或 443 端口进行挑战( http-01tls-sni-01 )来验证域所有权,如 certbot docs 中所述:

Under the hood, plugins use one of several ACME protocol challenges toprove you control a domain. The options are http-01 (which uses port80), tls-sni-01 (port 443) and dns-01 (requiring configuration of aDNS server on port 53, though that’s often not the same machine asyour webserver). A few plugins support more than one challenge type,in which case you can choose one with --preferred-challenges.


看着 certbot_nginx plugin implementationhttp-01挑战 我们可以看到插件编辑了 nginx 配置以包含用于执行挑战的附加服务器块:
  def _make_server_block(self, achall):
"""Creates a server block for a challenge.
:param achall: Annotated HTTP-01 challenge
:type achall:
:class:`certbot.achallenges.KeyAuthorizationAnnotatedChallenge`
:param list addrs: addresses of challenged domain
:class:`list` of type :class:`~nginx.obj.Addr`
:returns: server block for the challenge host
:rtype: list
"""

关于nginx - Letsencrypt certbot-nginx 插件。它是如何工作的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41980877/

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