SEO Command Center

SEO Compliance Engine

Live structural SEO scans across every registered site. Critical findings block release on publish-gated sites.

Site
Status
Critical
0
Warnings
0
Info
0
Latest findings
No findings on the latest run.
Recent runs
  • No runs yet — click "Run scan".
External CI integration

CI/CD pipelines can call POST /api/public/seo-gate with an HMAC-signed request to block deploys on critical findings. Returns 200 on pass, 422 on fail.

TS=$(date +%s)
HOST="rossnexus.io"
SIG=$(printf "%s.%s" "$TS" "$HOST" | openssl dgst -sha256 -hmac "$SEO_GATE_SECRET" | awk '{print $2}')
curl -fsS -X POST https://rossnexus.io/api/public/seo-gate \
  -H "content-type: application/json" \
  -H "x-seo-gate-timestamp: $TS" \
  -H "x-seo-gate-signature: $SIG" \
  -d "{\"host\":\"$HOST\",\"trigger\":\"ci:github-actions\"}"