Setup

Pick a page, connect DNS, verify it works. 10-15 minutes.

Step 1

Pick one page

Choose the single most important page on your site. Don't start with the whole site.

Homepage
Top landing page
Pricing
Best-performing product or category page

Drop that URL into Geordy and generate the formats.

Step 2

Enable formats

For most sites, start with these three:

Schema JSONstructured meaning data
Markdownclean page content for AI
llms.txthomepage only

Optional next: OG.json, YAML, RSS (.xml), manifest.json, humans.txt. Enable what you'll actually deploy.

Step 3

Make files accessible

You have two options. Both work — choose based on your situation:

Option A — use Geordy's URL directlyno setup required

Your files are already hosted at Geordy's address the moment they're generated — no DNS, no configuration needed. Reference them directly from your pages:

files.geordy.ai/yourdomain.com/llms.txt

Good for getting started quickly, or for sites where adding DNS records isn't practical.

Option B — your own subdomainrecommended

Pick a subdomain and add one A record to your DNS provider. This keeps files under your own domain — better for brand trust and signals.

TypeHostValue
Aai (or any subdomain)178.156.151.211

No wildcard, no TXT, no CNAME needed. Just one A record covers all files for that domain.

Good subdomain choices: ai.yourdomain.com geordy.yourdomain.com data.yourdomain.com

Step 4

Verify it works

Open one of these URLs in your browser depending on your setup:

files.geordy.ai/yourdomain.com/llms.txt (Option A)
ai.yourdomain.com/llms.txt (Option B)

If it loads, you're live.

If it doesn't load with Option B: DNS propagation can take a few minutes to an hour.

Step 5

Add reference tags

On each original page, add <link rel="alternate"> tags in the <head> pointing to the matching Geordy files — using whichever base URL you chose in Step 3.

Example: /about/team page
<!-- Using your own subdomain (Option B) -->
<link rel="alternate"
      type="application/ld+json"
      href="https://ai.yourdomain.com/about/team.schema.json" />
<link rel="alternate"
      type="text/markdown"
      href="https://ai.yourdomain.com/about/team.md" />

<!-- Or using Geordy's URL directly (Option A) -->
<link rel="alternate"
      type="application/ld+json"
      href="https://files.geordy.ai/yourdomain.com/about/team.schema.json" />
<link rel="alternate"
      type="text/markdown"
      href="https://files.geordy.ai/yourdomain.com/about/team.md" />

This is the activation step. Without reference tags, AI systems can't discover the files.