URL: https://linuxfr.org/forums/linux-debian-ubuntu/posts/generer-un-certificat-wildcard-avec-double-subdomain Title: Générer un certificat wildcard avec double subdomain Authors: electro575 Date: 2022年06月25日T14:12:21+02:00 License: CC By-SA Tags: Score: 0 Bonjour, J'arrive à générer (avec la commande ci-dessous) une wildcard avec certbot pour prendre en compte les domaines suivants, -subdomain.domain.fr -domain.fr ``` certbot certonly --dns-rfc2136 --dns-rfc2136-credentials /etc/letsencrypt/auth/rfc2136.ini -d *.domain.fr -d domain.fr ``` Néanmoins, subdomain.subdomain.domain.fr n'est pas pris en compte. Est-ce que la bonne méthode est d'effectuer la demande suivante ? ``` certbot certonly --dns-rfc2136 --dns-rfc2136-credentials /etc/letsencrypt/auth/rfc2136.ini -d *.subdomain.domain.fr -d subdomain.domain.fr ``` Merci pour vos retours.