LetsEncrypt Wildcards (Ubuntu 18.04): Unterschied zwischen den Versionen

Aus Tutorials
Zur Navigation springen Zur Suche springen
Zeile 24: Zeile 24:


==== Certbot ====
==== Certbot ====
<pre>
sudo mkdir /opt/certbot
sudo vi /opt/certbot/rfc2136.ini
</pre>
<pre>
certbot certonly \
  --dns-rfc2136 \
  --dns-rfc2136-credentials /opt/certbot/rfc2136.ini \
  -d example.com
</pre>


==== Links ====
==== Links ====

Version vom 14. März 2020, 15:21 Uhr

Noch in Bearbeitung


rfc2136

Installation

sudo apt-get install -y certbot python-certbot-apache python3-certbot-dns-rfc2136

Konfiguration

PowerDNS

sudo vi /etc/powerdns/pdns.conf
dnsupdate=yes
allow-dnsupdate-from=

Certbot

sudo mkdir /opt/certbot
sudo vi /opt/certbot/rfc2136.ini
certbot certonly \
  --dns-rfc2136 \
  --dns-rfc2136-credentials /opt/certbot/rfc2136.ini \
  -d example.com

Links

https://certbot.eff.org/lets-encrypt/debianbuster-apache

https://certbot-dns-rfc2136.readthedocs.io/en/stable/

Links

https://bbs.archlinux.org/viewtopic.php?id=240847

https://doc.powerdns.com/authoritative/dnsupdate.html

https://wiki.archlinux.org/index.php/Certbot

Docker

Um das certbot/dns-nsone-Image zu benützen, folgenden Befehl ausführen:

sudo docker run -it --rm --name certbot \
            -v "/etc/letsencrypt:/etc/letsencrypt" \
            -v "/var/lib/letsencrypt:/var/lib/letsencrypt" \
            certbot/dns-nsone certonly

Links

https://certbot.eff.org/docs/install.html#running-with-docker

https://hub.docker.com/u/certbot

https://medium.com/faun/docker-letsencrypt-dns-validation-75ba8c08a0d


Zurück zu LetsEncrypt