nixos/httpd: disable TLSv1 by default for better security

This commit is contained in:
Aaron Andersen 2019-02-07 14:05:44 -05:00
parent 70765af1a6
commit dd610ce84f

View File

@ -639,8 +639,8 @@ in
sslProtocols = mkOption {
type = types.str;
default = "All -SSLv2 -SSLv3";
example = "All -SSLv2 -SSLv3 -TLSv1";
default = "All -SSLv2 -SSLv3 -TLSv1";
example = "All -SSLv2 -SSLv3";
description = "Allowed SSL/TLS protocol versions.";
};
}