Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.d/5-internal/WPB-4887
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Increased ingress payload size from 256k to 512k
5 changes: 4 additions & 1 deletion charts/nginz/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,10 @@ nginx_conf:
- /search/top
- /search/common

default_client_max_body_size: "256k"
# `default_client_max_body_size` is increased from 256k to 512k because
# client requests like listing users, conversations, filling or getting prekeys and other various MLS requests
# apparently may have bodies larger than 256k.
default_client_max_body_size: "512k"

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A comment how this "magic number" was calculated would be great (though not mandatory.) If I remember this correctly, there was some specific request for a specific amount of group members? 🤔

rate_limit_reqs_per_user: "30r/s"
rate_limit_reqs_per_addr: "15r/m"

Expand Down