Certbot: Difference between revisions

From NixOS Wiki
imported>Onny
No edit summary
imported>Onny
mNo edit summary
Line 32: Line 32:
{{Note|Following example describes the usage of an experimental plugin which is still being reviewed as an open PR and might not be ready for production.}}
{{Note|Following example describes the usage of an experimental plugin which is still being reviewed as an open PR and might not be ready for production.}}


Installing ''certbot'' system wide with specific plugin included
{{file|/etc/nixos/configuration.nix|nix|<nowiki>
{{file|/etc/nixos/configuration.nix|nix|<nowiki>
  environment.systemPackages = with pkgs; [
  environment.systemPackages = with pkgs; [
   ( certbot.withPlugins (ps: with ps; [ python310Packages.certbot-dns-inwx ]) )
   ( certbot.withPlugins (ps: with ps; [ certbot-dns-inwx ]) )
  ];
  ];
</nowiki>}}
</nowiki>}}


Manually generate certificates for <code>example.org</code> using the ''inwx''-plugin
<syntaxhighlight lang="console">
<syntaxhighlight lang="console">
# certbot certonly -a dns-inwx -d example.org
# certbot certonly -a dns-inwx -d example.org --register-unsafely-without-email --agree-tos
</syntaxhighlight>
</syntaxhighlight>

Revision as of 22:24, 10 September 2022

Certbot is Electronic Frontier Foundation's ACME client, which is written in Python and provides conveniences like automatic web server configuration and a built-in webserver for the HTTP challenge. Certbot is recommended by Let's Encrypt.

Installation

Install certbot in your current environment

# nix-env -iA nixos.certbot

Usage

Generated certificates and keys by using the commands below will be stored as /etc/letsencrypt/live/example.org/fullchain.pem and /etc/letsencrypt/live/example.org/privkey.pem.

To make the keys readable by a third party user or application, you could set custom ACL permissions. In this example we grant the user maddy read permissions for the certificate folder:

# sudo setfacl -R -m u:maddy:rX /etc/letsencrypt/{live,archive}

Manual DNS challenge

The following command will generate a SSL certificate key pair for the domain example.org using the DNS authentication mechanism. After running this command, you'll get asked by the script to paste a specific key into your DNS records for example.org.

# certbot certonly --manual --preferred-challenges dns -d example.org --register-unsafely-without-email --agree-tos

DNS challenge using a plugin

Currently there are several certbot plugins already packaged. While the plugin usage should be similar for most of them, you should look up upstream documentation on how to use thim. In this example we're going to configure and use the plugin for the hosting provider INWX.

Note: Following example describes the usage of an experimental plugin which is still being reviewed as an open PR and might not be ready for production.

Installing certbot system wide with specific plugin included

/etc/nixos/configuration.nix
 environment.systemPackages = with pkgs; [
   ( certbot.withPlugins (ps: with ps; [ certbot-dns-inwx ]) )
 ];

Manually generate certificates for example.org using the inwx-plugin

# certbot certonly -a dns-inwx -d example.org  --register-unsafely-without-email --agree-tos