Which websites should we test?
| Website | Status | HTTP | Response | HTTPS |
|---|
This is a point-in-time request from one server location. It does not prove global availability and does not replace continuous uptime monitoring.
Reachable is not always healthy—and blocked is not always down
A response proves the remote server answered this check. The HTTP class then tells you whether it served content, redirected, rejected the request, or encountered a server error.
Successful response
The request was accepted. This is normally the clearest “up” signal.
Redirect response
The checker follows redirects and shows the final destination when it differs.
Reachable, client error
The server answered but denied or could not find the requested resource.
Server issue or unreachable
A 5xx indicates a responding server error; timeout, DNS, or connection failure means no HTTP response.
A practical status-check workflow
- Check the exact affected URL.A homepage can work while a login, API, or health endpoint fails.
- Review redirects and the final host.Unexpected redirects can reveal configuration or canonicalization problems.
- Compare from your own browser.A discrepancy may indicate firewall, bot protection, authentication, or regional filtering.
- Retest and use monitoring.One passing check is a snapshot; ongoing reliability requires scheduled multi-location monitoring.
Frequently asked questions
What does “down” mean here?
The ZeeSharp server could not obtain an HTTP response because of a timeout, DNS problem, connection failure, or similar transport error. HTTP 4xx and 5xx responses are classified separately.
Why does a working website appear blocked or unavailable?
Some firewalls and bot-protection systems deny automated server requests. Geographic policy, rate limiting, maintenance, or authentication can also produce a result different from your browser.
Does “HTTPS verified” mean the entire website is secure?
No. It only means TLS certificate verification succeeded for this request. It does not audit application vulnerabilities, content, encryption configuration, or every page.
Does the response time equal real-user page speed?
No. It measures the server-side request duration, not browser rendering, JavaScript execution, images, layout, or user-specific network latency.
Are private and local URLs supported?
No. The backend intentionally rejects private, loopback, and reserved destinations to prevent unsafe server-side requests.