Node.js social-bunch.site(http-01):urn:ietf:params:acme:error:unauthorized::客户端缺少足够的授权::

Node.js social-bunch.site(http-01):urn:ietf:params:acme:error:unauthorized::客户端缺少足够的授权::,node.js,nginx,ssl,lets-encrypt,Node.js,Nginx,Ssl,Lets Encrypt,我正利用它来尝试为Docker、nginx和node获取Lets Ecrypt证书,但我得到了这个错误 Failed authorization procedure. social-bunch.site (http-01): urn:ietf:params:acme:error:unauthorized :: The client lacks sufficient authorization :: Invalid response from ://social-bunch.site/.well-

我正利用它来尝试为Docker、nginx和node获取Lets Ecrypt证书,但我得到了这个错误

Failed authorization procedure. social-bunch.site (http-01): urn:ietf:params:acme:error:unauthorized :: The client lacks sufficient authorization :: Invalid response from ://social-bunch.site/.well-known/acme-challenge
我花了很长时间来构建这个项目,现在已经过了好几天才能获得一个该死的SSL证书。所以我很感激你的帮助。 这是我的文件

FROM node as build
WORKDIR /usr/app
COPY ./client .
RUN yarn install && yarn build

FROM nginx
RUN rm /etc/nginx/conf.d/default.conf
COPY ./nginx/nginx.conf /etc/nginx/nginx.conf
COPY --from=build /usr/app/build /usr/share/nginx/html
ARG CERTBOT_EMAIL=info@domain.com
ARG DOMAIN_LIST

RUN  apt-get update \
    && apt-get install -y cron certbot python-certbot-nginx bash wget \
    && certbot certonly --standalone --agree-tos -m "${CERTBOT_EMAIL}" -n -d ${DOMAIN_LIST} \
    && rm -rf /var/lib/apt/lists/* \
    && echo "@monthly certbot renew --nginx >> /var/log/cron.log 2>&1" >/etc/cron.d/certbot-renew \
    && crontab /etc/cron.d/certbot-renew
VOLUME /etc/letsencrypt
CMD [ "sh", "-c", "cron && nginx -g 'daemon off;'" ]