Managed serving on Netlify

On Netlify, managed serving is three status = 200 redirects — proxies, not redirects the visitor sees — appended to your netlify.toml.

Setup

  1. In the app, open your site → Channel and choose Managed. The app generates a netlify.toml fragment for your site.
  2. Append the [[redirects]] blocks to your netlify.toml.
  3. Deploy once.
  4. Back in the app, press Verify. The checks run against your live site within five minutes; you get the result by email.

What it looks like

[[redirects]]
  from = "/llms.txt"
  to = "https://web.sichta.gigliotti.software/api/artifacts/SITE-ID/llms.txt"
  status = 200

One block per managed path — /llms.txt, /llms-full.txt, /.well-known/security.txt. The generated fragment carries your real site id; copy from the app.

After a regeneration

Nothing to do. The proxy always points at the current files; regenerated content is live immediately.