mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-17 02:25:10 +00:00
4b14d20c5e
Users want to be able to override the request `max_size` to upload larger files. But they will not be able to if the patch is placed after the `request` directive. So we move the patch statement before the directive. Also, we wrap the `request_body` directives within `handle` statements. If not, then different sizes are not managed properly. To override the max upload size in the cms, add the following to the "caddyfile-cms" patch: handle_path /import/* { request_body { max_size 500MB } } See discussion: https://discuss.openedx.org/t/how-to-update-caddyfile-using-tutor-plugin/8944
369 B
369 B
- [Improvement] Make it possible to override the max upload size in the LMS and the CMS. This is achieved by moving the "caddyfile-lms" and "caddyfile-cms" patches just before the
import proxy
declarations. We also wrap therequest_body
directives withinhandle
statements, which means that themax_body
sizes can be overridden for specific paths. (by @regisb)