Certbot

, ,

Get your site on https://
Fonte: https://certbot.eff.org/

Dicas Úteis

Criar novo certificado usando webroot

certbot certonly --agree-tos --webroot -w /var/www/certbot/ -d tsujiguchi.com.br

Criar novo certificado usando nginx

certbot -i nginx certonly --manual -d receitanet.net

Criar novo certificado usando dns route53 do tipo wildcard

certbot certonly -n --agree-tos --dns-route53 --email EMAIL -d DOMAIN -d *.DOMAIN

Renovar certificados

certbot renew [--force-renewal]

Docker

Comando abaixo executa o certbot usando imagem no docker (DNS Route53)

docker run --rm -v ~/docker/aws:/root/.aws \
  -v /data/letsencrypt:/etc/letsencrypt \
  certbot/dns-route53:latest \
  COMMAND

Deixe um comentário