lol

Merge pull request #201159 from chreekat/b/extend-acmeFallbackHost-docs

authored by

Franz Pletz and committed by
GitHub
81d4121b f955ad16

+6 -2
+6 -2
nixos/modules/services/web-servers/nginx/vhost-options.nix
··· 88 88 type = types.nullOr types.str; 89 89 default = "/var/lib/acme/acme-challenge"; 90 90 description = lib.mdDoc '' 91 - Directory for the acme challenge which is PUBLIC, don't put certs or keys in here. 91 + Directory for the ACME challenge, which is **public**. Don't put certs or keys in here. 92 92 Set to null to inherit from config.security.acme. 93 93 ''; 94 94 }; ··· 97 97 type = types.nullOr types.str; 98 98 default = null; 99 99 description = lib.mdDoc '' 100 - Host which to proxy requests to if acme challenge is not found. Useful 100 + Host which to proxy requests to if ACME challenge is not found. Useful 101 101 if you want multiple hosts to be able to verify the same domain name. 102 + 103 + With this option, you could request certificates for the present domain 104 + with an ACME client that is running on another host, which you would 105 + specify here. 102 106 ''; 103 107 }; 104 108