You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Align upload limits with new MEDIA_MAX_UPLOAD_SIZE_MB app cap
Upstream display-api-service 3.0.0 introduces a Symfony-level upload ceiling
(MEDIA_MAX_UPLOAD_SIZE_MB, default 200 MiB) enforced on Media::$file. The cap
flows into .env.symfony automatically via task env:init, but the PHP and nginx
example defaults shipped here (128M / 140M / 140m) were below it — large
uploads would have been rejected at the proxy/PHP layer with an opaque 413
instead of the app's clear validator error.
Bumps PHP_UPLOAD_MAX_FILESIZE to 200M, PHP_POST_MAX_SIZE to 210M, and
NGINX_MAX_BODY_SIZE to 210m so the four-layer inequality holds out of the box.
UPGRADE.md gets a new sub-section spelling out the alignment rule and an
env:diff verification step for operators whose migrated .env.symfony predates
the new var.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
0 commit comments