aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/nixos/modules/services/web-servers/nginx/location-options.nix
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/nixpkgs/nixos/modules/services/web-servers/nginx/location-options.nix')
-rw-r--r--infra/libkookie/nixpkgs/nixos/modules/services/web-servers/nginx/location-options.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/infra/libkookie/nixpkgs/nixos/modules/services/web-servers/nginx/location-options.nix b/infra/libkookie/nixpkgs/nixos/modules/services/web-servers/nginx/location-options.nix
index f2fc07255725..5a7f5188b6cf 100644
--- a/infra/libkookie/nixpkgs/nixos/modules/services/web-servers/nginx/location-options.nix
+++ b/infra/libkookie/nixpkgs/nixos/modules/services/web-servers/nginx/location-options.nix
@@ -101,6 +101,16 @@ with lib;
'';
};
+ fastcgiParams = mkOption {
+ type = types.attrsOf types.str;
+ default = {};
+ description = ''
+ FastCGI parameters to override. Unlike in the Nginx
+ configuration file, overriding only some default parameters
+ won't unset the default values for other parameters.
+ '';
+ };
+
extraConfig = mkOption {
type = types.lines;
default = "";