acme.sh --issue -d xfox.fun -d www.xfox.fun --nginx --debug 2 [Sat 08 Jul 2023 08:04:23 PM CST] Lets find script dir. [Sat 08 Jul 2023 08:04:23 PM CST] _SCRIPT_='/home/xfox/.acme.sh/acme.sh' [Sat 08 Jul 2023 08:04:23 PM CST] _script='/home/xfox/.acme.sh/...
_exists "nginx"; then _err "nginx command is not found." return 1 fi NGINX_CONF="$(nginx -V 2>&1 | _egrep_o "--conf-path=[^ ]* " | tr -d " ")" _debug NGINX_CONF "$NGINX_CONF" NGINX_CONF="$(echo "$NGINX_CONF" | cut -d = -f 2)" _debug NGINX_CONF "$NGINX_...
ACME.SH 脚本中文说明:https://github.com/acmesh-official/acme.sh/wiki/说明 首先还是需要用 SSH 客户端连接到服务器,然后需要用到 curl 或 wget 命令,一般系统自带,如果提示 command not found,可采用命令 apt install -y curl wget 安装。 curl https://get.acme.sh|sh-s email=mymail@example.com wge...
Staging uses the same process, only the certs created are signed by a CA that is "unknown" so not trusted. Afaik, the results are still treated the same as the 'real' certificates. The last time I used the staging process, I was using "acme.sh" on the command line, on a debian ...
孤爺仔/acme.sh 代码 Issues 0 Pull Requests 0 Wiki 统计 流水线 服务 加入Gitee 与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :) 免费加入 已有帐号? 立即登录 文件 master 分支(7) 标签(27) 管理 管理 master release/2.8.5 dev shebang json dnsconf cron 2.8...
WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after ...
问题出在nginx配置文件。由于缺少证书文件,容器无法正确启动。我注解掉了ssl服务器部分,重建了映像并再次...
如果是配置Nginx SSL证书,通常只需要按照下面这样修改即可 ssl_certificate/etc/letsencrypt/live/xxx/fullchain.pem;ssl_certificate_key/etc/letsencrypt/live/xxx/privkey.pem; Certbot command-line options Certbot supports a lot of command line options. Here’s the full list, fromcertbot --help all: ...
curl https://get.acme.sh | sh 若后面出现command not found,则需要手动执行以下命令: source ~/.bashrc 生成证书 HTTP 认证方式 该方式 acme.sh 会在你的指定的网站根目录下自动生成一个文件,来验证域名所有权,然后自动完成验证并签发证书: acme.sh --issue -d domain.tld -d www.domain.tld --webroot...
server { listen 443 ssl; ssl_certificate /root/.acme.sh/example.com/fullchain.cer; ssl_certificate_key /root/.acme.sh/example.com/example.com.key; ... } Reload NGINX for your configuration file updates to take effect. On systemd-based distributions run the following command: systemctl rel...