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
- In the app, open your site → Channel and choose Managed. The app generates a
netlify.tomlfragment for your site. - Append the
[[redirects]]blocks to yournetlify.toml. - Deploy once.
- 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.