a346709127 发表于 2023-7-28 01:48:42

ssl证书续签 老提示这个

Please refer to https://www.gnu.org/software/wget/manual/html_node/Exit-Status.html for error code: 4

查看了一下是网络故障但是我用服务器ping 证书的根域名也是没问题的可以ping 通

后面搜索论坛 尝试输入export ACME_USE_WGET=1 再续签证书依旧存在这个问题。。搞得我摸不着头脑了。

a346709127 发表于 2023-7-28 02:00:41

Please refer to https://www.gnu.org/software/wget/manual/html_node/Exit-Status.html for error code: 4
Create new order error. Le_OrderFinalize not found.
Please check log file for more details: /usr/local/acme.sh/acme.sh.log

licess 发表于 2023-7-28 09:43:27

error code: 4,按错误代码是Network failure.
有可能是你系统网络无法正常访问letsencrypt或你选的其他证书的服务器

a346709127 发表于 2023-7-28 11:36:09

部分域名成功 部分不成功~~

另外lnmp用 301跳转

server
    {
      listen 80;
      #listen [::]:80;
      server_name lnmp.org www.lnmp.org;
      index index.html index.htm index.php default.html default.htm default.php;
      root/home/wwwroot/lnmp.org;

      location ~ /.well-known {
            allow all;
      }

      location / {
            return 301 https://$host$request_uri;
      }
    }

按照提示添加进去了ng会提示错误 不知道哪里添加错了,删掉这段又可以正常启动

licess 发表于 2023-7-29 14:04:27

a346709127 发表于 2023-7-28 11:36
部分域名成功 部分不成功~~

另外lnmp用 301跳转


这段代码是没问题的,可能你放在了不正确的地方或者与其他代码有冲突
报错你也得贴出错误信息来
页: [1]
查看完整版本: ssl证书续签 老提示这个