From 1b019fe39fbc9638cf616698cbe7fe7fe4d85c36 Mon Sep 17 00:00:00 2001 From: Jaka Hudoklin Date: Fri, 13 Dec 2013 09:41:22 +0100 Subject: [PATCH] nginx: enable ipv6 and spdy --- pkgs/servers/http/nginx/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/servers/http/nginx/default.nix b/pkgs/servers/http/nginx/default.nix index 86b22ab5a18..d29518d710e 100644 --- a/pkgs/servers/http/nginx/default.nix +++ b/pkgs/servers/http/nginx/default.nix @@ -40,11 +40,13 @@ stdenv.mkDerivation rec { configureFlags = [ "--with-http_ssl_module" + "--with-http_spdy_module" "--with-http_xslt_module" "--with-http_sub_module" "--with-http_dav_module" "--with-http_gzip_static_module" "--with-http_secure_link_module" + "--with-ipv6" # Install destination problems # "--with-http_perl_module" ] ++ stdenv.lib.optional rtmp "--add-module=${rtmp-ext}"