summaryrefslogtreecommitdiff
path: root/nginx
diff options
context:
space:
mode:
authorDaniel Micay <danielmicay@gmail.com>2020-12-03 11:17:21 -0500
committerDaniel Micay <danielmicay@gmail.com>2020-12-03 11:17:21 -0500
commit7d5cea6e5ddb911ce52d7d8341d22d5dbaf49fdc (patch)
tree7e1110097b6d165c20b2cec65520d959938b23c3 /nginx
parent4c2050872755b45ce5f988a35306a909aacf8cf7 (diff)
lower max body size to 1k
Diffstat (limited to 'nginx')
-rw-r--r--nginx/nginx.conf4
1 files changed, 2 insertions, 2 deletions
diff --git a/nginx/nginx.conf b/nginx/nginx.conf
index feaf0c15..6e657145 100644
--- a/nginx/nginx.conf
+++ b/nginx/nginx.conf
@@ -20,8 +20,8 @@ http {
types_hash_max_size 2048;
server_tokens off;
- client_max_body_size 4k;
- client_body_buffer_size 4k;
+ client_max_body_size 1k;
+ client_body_buffer_size 1k;
client_body_timeout 30s;
client_header_timeout 30s;
send_timeout 30s;