How to read the status cards
The status view describes how nextjs.org responded when the displayed checks were performed. It concerns the official Next.js website and documentation endpoint, not the availability of every application built with Next.js.
Use the timestamp shown with each card. HTTP responses, certificates, and DNS records can change, so an older result should be treated as historical evidence rather than a promise about the present.
What each signal means
| Card | What it can establish | What it cannot establish |
|---|---|---|
| HTTP | Whether the tested URL returned a response and which status class was observed | That every page, region, or future request will respond identically |
| TLS | Whether the tested connection presented a certificate accepted for that hostname at that time | That all content, packages, or third-party links are trustworthy |
| DNS | Which public records were returned for the hostname during the lookup | Permanent ownership, future routing, or private infrastructure details |
An HTTP 2xx response generally indicates that the request succeeded. A 3xx response indicates redirection and should be followed to its final official destination. A 4xx result may reflect a missing page, access rule, or unsuitable request, while a 5xx result indicates that the responding service could not complete the request.
Useful follow-up checks
- Open
https://nextjs.org/docswhen looking for maintained framework documentation. - Confirm that the browser remains on
nextjs.orgafter any redirect. - Check certificate dates and the exact hostname if a TLS warning appears.
- Retry unexpected failures from another connection before assuming a broad outage.
- Consult the official repository when the website and installed package documentation appear inconsistent.
A healthy website response does not validate an application's architecture or dependencies. Conversely, a temporary website failure does not mean that deployed Next.js applications have stopped working. Interpret every card within its stated hostname, time, and request scope.
