Skip to content

Public routes

The hosted domain uses path-based routing.

URL Purpose Public data rule
https://azharizz.blog/ Project list Contains only public project links.
https://azharizz.blog/themis/ Live Themis workspace Shows receipt-backed release evidence.
https://azharizz.blog/themis/docs/ Themis documentation Static MkDocs files only.
https://azharizz.blog/analytics-agent/ Themis Analytics Agent One read-only Themis engine.
https://azharizz.blog/apollo/ Apollo application Separate project boundary.
https://azharizz.blog/datahub-ui/ Shared DataHub UI Existing shared route.

Route behavior

  • /themis/docs redirects to /themis/docs/.
  • HTTP redirects to HTTPS.
  • Unknown root paths return 404.
  • Sensitive source and environment paths return 404.
  • The docs path does not proxy to the Themis API.
  • The Apollo route is not included in the docs build.

Check a deployment

for path in / /themis/ /themis/docs/ /analytics-agent/ /apollo/ /datahub-ui/; do
  curl -fsS -o /dev/null -w "%{http_code}  %{url_effective}\n" \
    "https://azharizz.blog${path}"
done

The expected status for /, /themis/, /themis/docs/, /analytics-agent/, and /apollo/ is 200. /datahub-ui/ may redirect to its trailing-slash form, depending on the active DataHub frontend configuration.