summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2015-04-27 18:23:55 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2015-04-27 18:24:16 +0200
commit534b84a9ac125e960660cb05c4f75a5d6f666c5f (patch)
treeb70af93d32dd2989014f4d37d34a233d00bace74 /nixos
parent6db9c9a2bbb80bd6c3bd0f5b79d987c39c1e5aa6 (diff)
downloadnixpkgs-534b84a9ac125e960660cb05c4f75a5d6f666c5f.tar
nixpkgs-534b84a9ac125e960660cb05c4f75a5d6f666c5f.tar.gz
nixpkgs-534b84a9ac125e960660cb05c4f75a5d6f666c5f.tar.bz2
nixpkgs-534b84a9ac125e960660cb05c4f75a5d6f666c5f.tar.lz
nixpkgs-534b84a9ac125e960660cb05c4f75a5d6f666c5f.tar.xz
nixpkgs-534b84a9ac125e960660cb05c4f75a5d6f666c5f.tar.zst
nixpkgs-534b84a9ac125e960660cb05c4f75a5d6f666c5f.zip
Don't require sslServerChain to be set
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/web-servers/apache-httpd/per-server-options.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/nixos/modules/services/web-servers/apache-httpd/per-server-options.nix b/nixos/modules/services/web-servers/apache-httpd/per-server-options.nix
index 9fb25c37f5b..0db27b0bcbe 100644
--- a/nixos/modules/services/web-servers/apache-httpd/per-server-options.nix
+++ b/nixos/modules/services/web-servers/apache-httpd/per-server-options.nix
@@ -57,7 +57,8 @@ with lib;
   };
 
   sslServerChain = mkOption {
-    type = types.path;
+    type = types.nullOr types.path;
+    default = null;
     example = "/var/ca.pem";
     description = "Path to server SSL chain file.";
   };