nginx module: make client_max_body_size configurable
This commit is contained in:
parent
8c61b3af03
commit
511410789b
1 changed files with 8 additions and 2 deletions
|
@ -68,7 +68,7 @@ let
|
|||
proxy_http_version 1.0;
|
||||
''}
|
||||
|
||||
client_max_body_size 10m;
|
||||
client_max_body_size ${cfg.clientMaxBodySize};
|
||||
|
||||
server_tokens ${if cfg.serverTokens then "on" else "off"};
|
||||
|
||||
|
@ -270,7 +270,13 @@ in
|
|||
serverTokens = mkOption {
|
||||
type = types.bool;
|
||||
default = false;
|
||||
description = "Show nginx version in headers and error pages";
|
||||
description = "Show nginx version in headers and error pages.";
|
||||
};
|
||||
|
||||
clientMaxBodySize = mkOption {
|
||||
type = types.string;
|
||||
default = "10m";
|
||||
description = "Set nginx global client_max_body_size.";
|
||||
};
|
||||
|
||||
sslCiphers = mkOption {
|
||||
|
|
Loading…
Reference in a new issue