HTTP 507 — Insufficient Storage
5xx Server Error
What it means
The server cannot store the representation needed to complete the request.
What to do about it
Check disk space. A full disk also causes surprising 500s elsewhere, since logs and temp files stop writing.
Where it sits
507 belongs to the 5xx family: The server failed to fulfil an apparently valid request. The fix is on the server side.
HTTP/1.1 507 Insufficient Storage
Checking it yourself
# see the status code and headers only
curl -sI https://example.com/path
# follow redirects and print each hop
curl -sIL -o /dev/null -w "%{http_code} %{url_effective}\n" https://example.com/path
# JavaScript
const r = await fetch(url);
console.log(r.status, r.statusText);