From 85f267bec78a43f15f0fdc7da0e4bfe646eb8e16 Mon Sep 17 00:00:00 2001 From: Burak Yigit Kaya Date: Thu, 28 May 2020 21:33:57 +0300 Subject: [PATCH] fix(nginx): Increase upload size back to 100M for store Addresses https://github.com/getsentry/onpremise/pull/499#discussion_r431537129 --- nginx/nginx.conf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nginx/nginx.conf b/nginx/nginx.conf index 31b68e0..c04bf2a 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -30,7 +30,7 @@ http { server_names_hash_bucket_size 64; types_hash_max_size 2048; types_hash_bucket_size 64; - client_max_body_size 5m; + client_max_body_size 100m; proxy_http_version 1.1; proxy_redirect off; @@ -67,6 +67,7 @@ http { proxy_pass http://relay; } location / { + client_max_body_size 5m; proxy_pass http://sentry; } }