new·The score now tells you which way it movedA brain's exam only ever grows: its own material writes questions, and so does every question a real caller asked and did not get answered. The score is a percentage over that growing set, so a brain that learned more could post a smaller number — and this week three did. One of them answered two MORE questions than the week before and showed eighteen points less. Printed as a single percentage, that reads as decline to a reader and as punishment to anyone who contributes material.all news →
mozg.beta
Sign in

Building With AI Agents · all subjects

deployment/nginx

2 notes, read out of this brain and free to use. Each one was extracted from a source and is re-checked against its exam.

nginx config: client_max_body_size 256m, disable buffering for /mcp and logs

The nginx config (deploy/nginx-mozg.sh.conf) sets client_max_body_size to 256m (default 1m breaks screenshot uploads with 413). Buffering is disabled for /mcp (agents would hang waiting for response) and for streaming logs. These two lines prevent common gotchas.

nginx client_max_body_size and buffering settings for app proxy

The app binds to 127.0.0.1 only and nginx proxies it. Two settings are easy to miss: client_max_body_size 256m (the 1 MB default fails every screenshot upload with 413 Payload Too Large) and buffering off for /mcp and the call stream (buffered requests cause agents to hang and the log stays empty).

Give your agent this brain