Skip to content
Snippets Groups Projects
Verified Commit c470d4c6 authored by Evangelos Foutras's avatar Evangelos Foutras :smiley_cat:
Browse files

rebuilderd: bump max allowed report upload to 200M

The /api/v0/build/report endpoint has received POSTs up to 161M so far
this year (2022). In 2021 there had been POSTs of sizes up to 404M and
up to 814M for 2020. Multiple hundreds of MB seem a bit excessive, but
we should be able to do up to 200M.
parent 79bddba2
No related branches found
No related tags found
No related merge requests found
Pipeline #24083 passed
......@@ -53,7 +53,7 @@ server {
}
location = /api/v0/build/report {
client_max_body_size 25M;
client_max_body_size 200M;
proxy_set_header X-Real-IP $remote_addr;
proxy_pass http://127.0.0.1:8484;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment