Letsencrypt DNS Verification: Unterschied zwischen den Versionen

Aus xinux.net
Zur Navigation springen Zur Suche springen
Zeile 9: Zeile 9:
 
=create wildcard cert with certbot=
 
=create wildcard cert with certbot=
 
certbot install:
 
certbot install:
 +
*cd /usr/local/bin
 
*wget https://dl.eff.org/certbot-auto
 
*wget https://dl.eff.org/certbot-auto
 
*chmod a+x ./certbot-auto
 
*chmod a+x ./certbot-auto
 
*./certbot-auto
 
*./certbot-auto
*./certbot-auto certonly --server https://acme-v02.api.letsencrypt.org/directory --manual --preferred-challenges dns -d *.domain.de  
+
*./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/
 
*https://blogs.msdn.microsoft.com/mihansen/2018/03/15/creating-wildcard-ssl-certificates-with-lets-encrypt/

Version vom 8. November 2018, 10:37 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