mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
nixos/nginx: allow paths in fastcgiParams
Useful for pointing `SCRIPT_FILENAME` at a derivation.
This commit is contained in:
parent
1f2b8b7b63
commit
c965a30871
1 changed files with 1 additions and 1 deletions
|
@ -102,7 +102,7 @@ with lib;
|
||||||
};
|
};
|
||||||
|
|
||||||
fastcgiParams = mkOption {
|
fastcgiParams = mkOption {
|
||||||
type = types.attrsOf types.str;
|
type = types.attrsOf (types.either types.str types.path);
|
||||||
default = {};
|
default = {};
|
||||||
description = ''
|
description = ''
|
||||||
FastCGI parameters to override. Unlike in the Nginx
|
FastCGI parameters to override. Unlike in the Nginx
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue