繁体   English   中英

docker-compose nginx certbot 未找到证书

[英]docker-compose nginx certbot not found certificate

我想创建一个包含多个服务的 docker-compose,我想在其中使用 Certbot/LetsEncryt 为我的域名生成证书。 但是当我运行它时,我总是得到一个错误,说它找不到证书。 虽然通常我会做所有必要的事情来生成它。

version: '3.8'
services:
  proxy-nginx:
    build: .
    ports:
      - 80:80
      - 443:443
    volumes:
      - ./certbot/www:/var/www/certbot/
      - ./certbot/conf/:/etc/nginx/ssl/
    depends_on:
      - nestjs
    restart: unless-stopped

  certbot:
    image: certbot/certbot:latest
    depends_on:
      - proxy-nginx
    volumes:
      - ./certbot/www/:/var/www/certbot/
      - ./certbot/conf/:/etc/letsencrypt/
    command: certonly --webroot --webroot-path=/var/www/certbot --email emain@gmail.com --agree-tos --no-eff-email --staging 0 --force-renewal -d www.mydomaine -d mydomaine

  nestjs:
    build:
      context: ./BACKEND
      dockerfile: Dockerfile
    ports:
      - 3000:3000

这是结果:

cannot load certificate "/etc/nginx/ssl/live/mydomaine/fullchain.pem": BIO_new_file() failed (SSL: error:02001002:system library:fopen:No such file or directory:fopen('/etc/nginx/ssl/live/mydomaine/fullchain.pem','r') error:2006D080:BIO routines:BIO_new_file:no such file)

```


In my nginx.conf file
I have 1 proxy server and 1 server for the front-end and back-end of my application. But the problem is nginx can't find the certificate. I don't know why.
normally the certificate is generated in the folder /etc/nginx/ssl/live/mydomaine.be/ but it's not the case.

这就是我使用它的方式并且它有效。

docker-compose.yml

services:
  node:
    container_name: node-server
    build: .
    environment: # process.env.
      NODE_ENV: production
    networks:
      - app-network
  nginx:
    image: 'nginx:1.23.3'
    container_name: nginx-server
    depends_on:
      - node
    volumes:
      - './volumes/nginx/production/nginx.conf:/etc/nginx/nginx.conf:ro'
      - './volumes/nginx/production/conf.d/:/etc/nginx/conf.d'
      - './volumes/certbot/letsencrypt:/etc/letsencrypt'
      - './volumes/certbot/www:/var/www/certbot'
    networks:
      - app-network 
    ports:
      - '80:80' # To access nginx from outside
      - '443:443' # To access nginx from outside
networks:
  app-network:
    driver: bridge

Docker 运行 certbot

docker run --rm --name temp_certbot \
    -v /home/app-folder/volumes/certbot/letsencrypt:/etc/letsencrypt \
    -v /home/app-folder/volumes/certbot/www:/tmp/letsencrypt \
    -v /home/app-folder/volumes/certbot/log:/var/log \
    certbot/certbot:v1.8.0 \
    certonly --webroot --agree-tos --renew-by-default \
    --preferred-challenges http-01 --server https://acme-v02.api.letsencrypt.org/directory \
    --text --email info@domain.com \
    -w /tmp/letsencrypt -d domain.com

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM