Fix nginx configuration to not cache requests bodys.

This commit is contained in:
Stanislav Nikitin 2020-06-16 12:07:59 +05:00
parent 1bd9ecc5fe
commit c01876e1b2
No known key found for this signature in database
GPG Key ID: 106900B32F8192EE
1 changed files with 2 additions and 0 deletions

View File

@ -9,6 +9,8 @@ server {
autoindex on;
charset utf-8;
client_max_body_size 500m;
# To not cache requests bodys on disk.
client_body_buffer_size 16m;
gzip on;