Certbot se comporta mal criando um certificado para um domínio com “www”

-1

Desta vez, quando usei o certbot, ele criou um certificado para "www. $ website" em vez de $ website. Isso não é o que eu preciso.

Aqui está:

  $ website="my_website123.com"
  $ sudo certbot certonly --standalone -d $website -d www.$website --email admin@$website           
  Saving debug log to /var/log/letsencrypt/letsencrypt.log
  Plugins selected: Authenticator standalone, Installer None
  Starting new HTTPS connection (1): acme-v01.api.letsencrypt.org
  Cert not yet due for renewal

  You have an existing certificate that has exactly the same domains or certificate name you requested and isn't close to expiry.
  (ref: /etc/letsencrypt/renewal/www.my_website123.com.conf)

  What would you like to do?
  -------------------------------------------------------------------------------
  1: Keep the existing certificate for now
  2: Renew & replace the cert (limit ~5 per 7 days)
  -------------------------------------------------------------------------------
  Select the appropriate number [1-2] then [enter] (press 'c' to cancel): 2
  Renewing an existing certificate
  Performing the following challenges:
  http-01 challenge for my_website123.com
  http-01 challenge for www.my_website123.com
  Waiting for verification...
  Cleaning up challenges

  IMPORTANT NOTES:
   - Congratulations! Your certificate and chain have been saved at:
     /etc/letsencrypt/live/www.my_website123.com/fullchain.pem
     Your key file has been saved at:
     /etc/letsencrypt/live/www.my_website123.com/privkey.pem
     Your cert will expire on 2018-10-18. To obtain a new or tweaked
     version of this certificate in the future, simply run certbot
     again. To non-interactively renew *all* of your certificates, run
     "certbot renew"
   - If you like Certbot, please consider supporting our work by:

     Donating to ISRG / Let's Encrypt:   https://letsencrypt.org/donate
     Donating to EFF:                    https://eff.org/donate-le

Por que ele criou um para "www" em vez do domínio simples?

Em todos os meus próprios servidores, esse mesmo comando sempre criou um certificado. sem "www" - isso é o que eu preciso. Eu até tentei ontem em um servidor diferente - sem "wwww".

Como posso criar um certificado? sem "www"?

    
por Katta 20.07.2018 / 06:43

1 resposta

3

Se você está tentando obter um certificado sem o subdomínio www, remova -d www.$website do seu comando.
Essa parte do seu comando está pedindo o subdomínio www.

Se você estiver tentando definir o nome do arquivo de certificado resultante, use --cert-name $website , mas mantenha os dois -d s.

    
por 20.07.2018 / 07:17