about summary refs log tree commit diff
path: root/pkgs/servers
diff options
context:
space:
mode:
authorJaka Hudoklin <jakahudoklin@gmail.com>2013-12-13 09:41:22 +0100
committerJaka Hudoklin <jakahudoklin@gmail.com>2013-12-13 09:42:06 +0100
commit1b019fe39fbc9638cf616698cbe7fe7fe4d85c36 (patch)
treee07fc4c1450660078d87710d85141a7cff2b297c /pkgs/servers
parented9ce850fd317e38295b7a441c580f9678b51ca6 (diff)
downloadnixlib-1b019fe39fbc9638cf616698cbe7fe7fe4d85c36.tar
nixlib-1b019fe39fbc9638cf616698cbe7fe7fe4d85c36.tar.gz
nixlib-1b019fe39fbc9638cf616698cbe7fe7fe4d85c36.tar.bz2
nixlib-1b019fe39fbc9638cf616698cbe7fe7fe4d85c36.tar.lz
nixlib-1b019fe39fbc9638cf616698cbe7fe7fe4d85c36.tar.xz
nixlib-1b019fe39fbc9638cf616698cbe7fe7fe4d85c36.tar.zst
nixlib-1b019fe39fbc9638cf616698cbe7fe7fe4d85c36.zip
nginx: enable ipv6 and spdy
Diffstat (limited to 'pkgs/servers')
-rw-r--r--pkgs/servers/http/nginx/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/servers/http/nginx/default.nix b/pkgs/servers/http/nginx/default.nix
index 86b22ab5a18c..d29518d710ee 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}"