nixos/httpd: update default ssl protocols

This commit is contained in:
Aaron Andersen 2019-12-30 11:24:11 -05:00
parent c94e211a47
commit 6777926911

View file

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