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:
parent
83160e8bdb
commit
85f267bec7
@ -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;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user