Commit 7f8c409f authored by Pedro Eduardo Trujillo's avatar Pedro Eduardo Trujillo
Browse files

Aumenta tamaño de body y timeout permitidos

Acepta cuerpo de petición de hasta 2GB y sesiones abiertas durante 1h.
parent 71d5ba6c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -24,11 +24,11 @@ http {
	tcp_nopush on;

	keepalive_requests 1000;
	keepalive_timeout 120;
	keepalive_timeout 3600;

	types_hash_max_size 2048;
	server_tokens off;
	client_max_body_size 250M;
	client_max_body_size 2048M;

	include /etc/nginx/conf.d/*;
}