# Let's Encrypt で発行したSANの証明書にドメインを追加したい場合 {{tag: letsencrypt, ssl}} Let's Encrypt で、1枚で複数ドメインの証明書として使える証明書を発行している場合に、あらたにドメインを追加したい場合は、改めて発行分の全ドメインと追加分のドメインを並べたコマンド打てばOK ./certbot-auto certonly --standalone -d example.com -d foo.example.com 上のような感じで発行してる場合、あらためて追加分も加えたやつで打てばOK ./certbot-auto certonly --standalone -d example.com -d foo.example.com -d bar.example.com CN(コモンネーム)と追加分だけで打てばいいかなと思ってたけど、実際は全部並べないとだめだった(そらそうか)。