# Menu scan uploads (JPG/PNG/WEBP/PDF) allow up to 200 MB in the app.
# Nginx defaults to client_max_body_size 1m and returns 413 for larger bodies.
#
# Production: cPanel ea-nginx reverse proxy (in front of Apache).
# Do not paste this into generated /etc/nginx/conf.d/users/* files —
# those are regenerated. Set via settings.json instead:
#
#   1. As root, in /etc/nginx/ea-nginx/settings.json add:
#        "client_max_body_size": "210m"
#   2. Rebuild:
#        /usr/local/cpanel/scripts/ea-nginx config --global
#   3. Verify:
#        grep client_max_body_size /etc/nginx/conf.d/ea-nginx.conf
#
# See docker/UPLOADS.md for full steps (PHP MultiPHP INI, etc.).
# Keep this at or above PHP post_max_size (210M) and Laravel's 200 MB max.

client_max_body_size 210M;
