- origin
- Your own web server, or whatever your CDN already points at. "Your origin" is the response your site would have given with nothing of ours installed.
- mirror
- The agent-facing copy of a page NORG builds from your site: structured, derived data served at the page’s own URL. A "mirrored URL" is one that has such a copy.
- passthrough
- The worker returning your origin’s response untouched: no rewrite, no redirect, no NORG header. Most requests are passthroughs.
- policy feed
- The per-site list the worker fetches from NORG and caches for up to an hour: which crawler patterns to recognise, which operators you have enabled, their published address ranges, and your skip list. A "policy refresh" is the worker fetching it again.
- entitlement
- Whether NORG currently authorises this install to divert at all, decided by its site key when the policy feed is fetched. An unentitled install passes everything through and is otherwise indistinguishable from one that is not there.
- source verification
- Checking that a request claiming to be a crawler arrives from an address that crawler’s operator has published, so a copied user agent from anywhere else gets your origin.
- kill switch
- A setting on your own platform that puts every request back on the passthrough path with the code still deployed. Where it lives and how fast it acts differs per platform.
- skip list
- Paths you exclude from mirroring on a live install; requests to them pass through. Editable, and a change reaches the edge within the hour.
- heartbeat
- A periodic call from the edge to NORG reporting the adapter version, so an install with no traffic is still visibly alive.
- NORG content service (the receptionist)
- The NORG endpoint the worker fetches mirrored pages from, which also records a visit each time it serves one.
- instance
- One warm copy of the edge code; a platform runs many at once. Each keeps its own small cache, so "once per instance" means once per warm copy, not once per site. Cloudflare calls these isolates, Lambda calls them containers.
- cache miss
- A request the CDN’s own cache cannot answer and so passes onward. Every page request is one on every platform, because no adapter caches the page at the edge; on Bunny, where the script runs only on a miss, that is what the install’s edge rule guarantees.