ошибку aутентификации домена:
```
Certbot failed to authenticate some domains (authenticator: webroot).
Hint: The Certificate Authority failed to download the temporary challenge files created by Certbot. Ensure that the listed domains serve their content from the provided --webroot-path/-w and that files created there can be downloaded from the internet.
Контейнер для сертбота:
certbot:
image: certbot/certbot
container_name: certbot
volumes:
- ./docker/certbot/conf:/etc/letsencrypt
- ./docker/certbot/data:/var/www/certbot
command: certonly --webroot --webroot-path=/var/www/certbot --email myEmail@gmail.com --agree-tos --no-eff-email -d myDomain
depends_on:
- nginx
networks:
- net
```
Обновлял так: docker-compose run --rm certbot renew --dry-run
webroot означает, что папку, куда сербот будет складывать свой челлендж, должен кто-то обслуживать. Судя по твоему конфигу - нгинкс. Нгинс об этом в курсе?
nginx: image: library/nginx:1.14-alpine container_name: nginx restart: always ports: - 80:80 - 443:443 volumes: - ./:/var/www/html/${APP_NAME} - ./docker/nginx/conf.d:/etc/nginx/conf.d - ./docker/nginx/data/log:/var/log/nginx - ./docker/certbot/conf:/etc/letsencrypt - ./docker/certbot/data:/var/www/certbot depends_on: - php - mysql networks: - net
Обсуждают сегодня