feat: Increase nginx clientMaxBodySize limit
Increased the clientMaxBodySize in nginx configuration from 100M to 1000M. This change allows larger client request bodies,
This commit is contained in:
parent
0a0ae0db8c
commit
3eba20c0dc
|
@ -3,7 +3,7 @@
|
||||||
users.users.nginx.extraGroups = [ "acme" ];
|
users.users.nginx.extraGroups = [ "acme" ];
|
||||||
services.nginx = {
|
services.nginx = {
|
||||||
enable = true;
|
enable = true;
|
||||||
clientMaxBodySize = "100M";
|
clientMaxBodySize = "1000M";
|
||||||
appendHttpConfig = ''
|
appendHttpConfig = ''
|
||||||
log_format vcombined '$host:$server_port '
|
log_format vcombined '$host:$server_port '
|
||||||
'$remote_addr - $remote_user [$time_local] '
|
'$remote_addr - $remote_user [$time_local] '
|
||||||
|
|
Loading…
Reference in a new issue