Allow up to 3 MiB payload in nginx, privatebin defaults to 2 MiB

This commit is contained in:
El RIDO 2018-06-19 13:23:28 +02:00
parent f18e51f132
commit 93da5b24a8

View File

@ -66,6 +66,9 @@ http {
# since TCP frames are filled up before being sent out.
tcp_nopush on;
# Allow up to 3 MiB payload, privatebin defaults to 2 MiB.
client_max_body_size 3M;
# Load even moar configs
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*.conf;