diff --git a/app/spicedb/getting-started/first-steps/page.mdx b/app/spicedb/getting-started/first-steps/page.mdx index 8fc3dca7..2a70baff 100644 --- a/app/spicedb/getting-started/first-steps/page.mdx +++ b/app/spicedb/getting-started/first-steps/page.mdx @@ -72,7 +72,7 @@ import { InlinePlayground } from "@/components/playground"; Follow the instructions below to install to your development machine: - } title="Install the SpiceDB server binary" href="/spicedb/getting-started/installing-spicedb" /> + } title="Install the SpiceDB server binary" href="/spicedb/getting-started/install/docker" /> } title="Install the SpiceDB CLI tool: Zed" href="/spicedb/getting-started/installing-zed" /> diff --git a/next.config.mjs b/next.config.mjs index 4a01bc15..102ee3aa 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -50,6 +50,33 @@ export default withNextra({ destination: "/spicedb/best-practices/:path*", permanent: true, }, + // Materialize was promoted from a single concept page to a top-level + // section (PR #562). Keep the old indexed URL working. + { + source: "/authzed/concepts/authzed-materialize", + destination: "/materialize/getting-started/overview", + permanent: true, + }, + // The Ops pages below moved on 2026-02-05 without redirects, leaving + // ~2 months of indexed URLs 404ing. ai-agent-authorization and + // secure-rag-pipelines moved into the new Tutorials section; the + // langchain/langgraph RAG page was folded into the langchain-spicedb + // integration page. + { + source: "/spicedb/ops/ai-agent-authorization", + destination: "/spicedb/tutorials/ai-agent-authorization", + permanent: true, + }, + { + source: "/spicedb/ops/secure-rag-pipelines", + destination: "/spicedb/tutorials/secure-rag-pipelines", + permanent: true, + }, + { + source: "/spicedb/ops/spicedb-langchain-langgraph-rag", + destination: "/spicedb/integrations/langchain-spicedb", + permanent: true, + }, ]; }, // This is necessary because we're using CDN domains.