I need to upload files larger than 100MB. So far, I have modified bothMax image size KB and Max attachment size KB , and I plan to also modify upload_size in app.yml . However, I noticed that there is no upload_size in the params section of app.yml . Here is the excerpt I copied:
params:
db_default_text_search_config: "pg_catalog.english"
## Set db_shared_buffers to a max of 25% of the total memory.
## will be set automatically by bootstrap based on detected RAM, or you can override
db_shared_buffers: "768MB"
## can improve sorting performance, but adds memory usage per-connection
#db_work_mem: "40MB"
## Which Git revision should this container use? (default: latest)
#version: latest
env:
How should I proceed with the modification in this case? Additionally, I was unable to find where client_max_body_size is located.