Letsencrypt DNS Verification: Unterschied zwischen den Versionen

Aus xinux.net
Zur Navigation springen Zur Suche springen
Zeile 7: Zeile 7:
 
*certbot renew --dry-run --no-self-upgrade --manual-auth-hook /usr/local/sbin/certbot-dns-validation
 
*certbot renew --dry-run --no-self-upgrade --manual-auth-hook /usr/local/sbin/certbot-dns-validation
  
 +
=create wildcard cert with certbot=
 +
certbot install:
 +
*wget https://dl.eff.org/certbot-auto
 +
*chmod a+x ./certbot-auto
 +
*./certbot-auto
 +
*./certbot-auto certonly --server https://acme-v02.api.letsencrypt.org/directory --manual --preferred-challenges dns -d *.domain.de
 
=Links=
 
=Links=
 
*https://blog.v-gar.de/2018/03/lets-encrypt-wildcard-zertifikate-erstellen/
 
*https://blog.v-gar.de/2018/03/lets-encrypt-wildcard-zertifikate-erstellen/
 +
*https://blogs.msdn.microsoft.com/mihansen/2018/03/15/creating-wildcard-ssl-certificates-with-lets-encrypt/

Version vom 8. November 2018, 09:01 Uhr

certbot-dns-validation

First getting of the certs

  • certbot -d worf.xmen.de --manual --preferred-challenges dns certonly --manual-auth-hook /usr/local/sbin/certbot-dns-validation

Renew certs

  • certbot renew --dry-run --no-self-upgrade --manual-auth-hook /usr/local/sbin/certbot-dns-validation

create wildcard cert with certbot

certbot install:

Links