about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorAaron Andersen <aaron@fosslib.net>2020-01-02 11:28:25 -0500
committerGitHub <noreply@github.com>2020-01-02 11:28:25 -0500
commitebf58a34047a085a1d0209aab77b6b7408c94176 (patch)
tree141fff23cfa51e656c39c5bcb3112b64b8d3ac50 /nixos
parent16061ff61d594abbd39d11f7dbe72410fa1cf498 (diff)
parent6777926911b8e2bcde17b9889f4404523cd7f26e (diff)
downloadnixlib-ebf58a34047a085a1d0209aab77b6b7408c94176.tar
nixlib-ebf58a34047a085a1d0209aab77b6b7408c94176.tar.gz
nixlib-ebf58a34047a085a1d0209aab77b6b7408c94176.tar.bz2
nixlib-ebf58a34047a085a1d0209aab77b6b7408c94176.tar.lz
nixlib-ebf58a34047a085a1d0209aab77b6b7408c94176.tar.xz
nixlib-ebf58a34047a085a1d0209aab77b6b7408c94176.tar.zst
nixlib-ebf58a34047a085a1d0209aab77b6b7408c94176.zip
Merge pull request #76709 from aanderse/httpd-ssl
nixos/httpd: update default ssl protocols
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/web-servers/apache-httpd/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/web-servers/apache-httpd/default.nix b/nixos/modules/services/web-servers/apache-httpd/default.nix
index 8e3be3162988..3020fd68fc82 100644
--- a/nixos/modules/services/web-servers/apache-httpd/default.nix
+++ b/nixos/modules/services/web-servers/apache-httpd/default.nix
@@ -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.";
       };