Don't require sslServerChain to be set

This commit is contained in:
Eelco Dolstra 2015-04-27 18:23:55 +02:00
parent 6db9c9a2bb
commit 534b84a9ac

View File

@ -57,7 +57,8 @@ with lib;
}; };
sslServerChain = mkOption { sslServerChain = mkOption {
type = types.path; type = types.nullOr types.path;
default = null;
example = "/var/ca.pem"; example = "/var/ca.pem";
description = "Path to server SSL chain file."; description = "Path to server SSL chain file.";
}; };