summary refs log tree commit diff
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-01-09 02:24:24 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-01-09 02:24:24 +0100
commit7856011a30ac1f91d5b807d95004ea06f55f464b (patch)
tree4b4c9e8471108ba27e887140daaf51ea73aa0e9e
parenta7e31c64d9a5aa4583c838589b10513522b996e2 (diff)
downloadnixpkgs-7856011a30ac1f91d5b807d95004ea06f55f464b.tar
nixpkgs-7856011a30ac1f91d5b807d95004ea06f55f464b.tar.gz
nixpkgs-7856011a30ac1f91d5b807d95004ea06f55f464b.tar.bz2
nixpkgs-7856011a30ac1f91d5b807d95004ea06f55f464b.tar.lz
nixpkgs-7856011a30ac1f91d5b807d95004ea06f55f464b.tar.xz
nixpkgs-7856011a30ac1f91d5b807d95004ea06f55f464b.tar.zst
nixpkgs-7856011a30ac1f91d5b807d95004ea06f55f464b.zip
nixos/apache-httpd: Suggest directory used security.acme.certs.<name>.webroot
-rw-r--r--nixos/modules/services/web-servers/apache-httpd/vhost-options.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/web-servers/apache-httpd/vhost-options.nix b/nixos/modules/services/web-servers/apache-httpd/vhost-options.nix
index 173c0f8561c..394f9a30554 100644
--- a/nixos/modules/services/web-servers/apache-httpd/vhost-options.nix
+++ b/nixos/modules/services/web-servers/apache-httpd/vhost-options.nix
@@ -112,7 +112,7 @@ in
 
     acmeRoot = mkOption {
       type = types.str;
-      default = "/var/lib/acme/acme-challenges";
+      default = "/var/lib/acme/acme-challenge";
       description = "Directory for the acme challenge which is PUBLIC, don't put certs or keys in here";
     };