2
0

fix(nginx): Increase upload size back to 100M for store

Addresses https://github.com/getsentry/onpremise/pull/499#discussion_r431537129
This commit is contained in:
Burak Yigit Kaya 2020-05-28 21:33:57 +03:00
parent 83160e8bdb
commit 85f267bec7
No known key found for this signature in database
GPG Key ID: C2F03C406631065D

View File

@ -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;
}
}