nixos/httpd: disable TLSv1 by default for better security
This commit is contained in:
parent
70765af1a6
commit
dd610ce84f
@ -639,8 +639,8 @@ in
|
|||||||
|
|
||||||
sslProtocols = mkOption {
|
sslProtocols = mkOption {
|
||||||
type = types.str;
|
type = types.str;
|
||||||
default = "All -SSLv2 -SSLv3";
|
default = "All -SSLv2 -SSLv3 -TLSv1";
|
||||||
example = "All -SSLv2 -SSLv3 -TLSv1";
|
example = "All -SSLv2 -SSLv3";
|
||||||
description = "Allowed SSL/TLS protocol versions.";
|
description = "Allowed SSL/TLS protocol versions.";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user