nginx: Add Shibboleth Module

Also add nginxShibboleth package
This commit is contained in:
jammerful 2017-05-01 17:07:47 -04:00
parent f4289c8b19
commit da5bc79469
2 changed files with 14 additions and 0 deletions

View File

@ -175,4 +175,13 @@
in {
src = ngx_pagespeed;
};
shibboleth = {
src = fetchFromGitHub {
owner = "nginx-shib";
repo = "nginx-http-shibboleth";
rev = "48b70d87bf7796d7813813a837e52b3a86e6f6f4";
sha256 = "0k8xcln5sf0m4r0m550dkhl07zhncp285dpysk6r4v6vqzqmhzdc";
};
};
}

View File

@ -10880,6 +10880,11 @@ with pkgs;
nginxModules = callPackage ../servers/http/nginx/modules.nix { };
# We should move to dynmaic modules and create a nginxFull package with all modules
nginxShibboleth = callPackage ../servers/http/nginx/stable.nix {
modules = [ nginxModules.rtmp nginxModules.dav nginxModules.moreheaders nginxModules.shibboleth ];
};
ngircd = callPackage ../servers/irc/ngircd { };
nix-binary-cache = callPackage ../servers/http/nix-binary-cache {};