-
Notifications
You must be signed in to change notification settings - Fork 0
SEO optimization: robots.txt, sitemap, JSON-LD, topics #10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| # These are supported funding model platforms | ||
|
|
||
| github: [weby-homelab] | ||
| custom: ['https://github.com/weby-homelab'] |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,47 @@ | ||
| # Allow all crawlers | ||
| # ───────────────────────────────────────────── | ||
| # LLMtop — TUI Dashboard for Local LLMs: SEO & Crawler Directives | ||
| # ───────────────────────────────────────────── | ||
|
|
||
| # Sitemap | ||
| Sitemap: https://raw.githubusercontent.com/weby-homelab/LLMtop/master/sitemap.xml | ||
|
Comment on lines
+5
to
+6
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Search engines only look for |
||
|
|
||
| # ─── General Rules ─────────────────────────── | ||
| User-agent: * | ||
| Allow: / | ||
| Crawl-delay: 10 | ||
|
|
||
| # ─── Search-Specific Bots ──────────────────── | ||
| User-agent: Googlebot | ||
| Allow: / | ||
| Crawl-delay: 5 | ||
|
Comment on lines
+14
to
+16
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
|
|
||
| User-agent: Bingbot | ||
| Allow: / | ||
| Crawl-delay: 10 | ||
|
|
||
| User-agent: DuckDuckBot | ||
| Allow: / | ||
| Crawl-delay: 10 | ||
|
|
||
| # ─── AI Training Crawlers (Opt-Out) ────────── | ||
| User-agent: GPTBot | ||
| Disallow: / | ||
|
|
||
| User-agent: Claude-Web | ||
| Disallow: / | ||
|
|
||
| User-agent: CCBot | ||
| Disallow: / | ||
|
|
||
| User-agent: Google-Extended | ||
| Disallow: / | ||
|
|
||
| User-agent: FacebookBot | ||
| Disallow: / | ||
|
|
||
| # ─── Documentation Crawlers (Allowed) ──────── | ||
| User-agent: ReadableBot | ||
| Allow: / | ||
|
|
||
| User-agent: Diffbot | ||
| Allow: / | ||
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,19 @@ | ||||||||
| <?xml version="1.0" encoding="UTF-8"?> | ||||||||
| <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" | ||||||||
| xmlns:xhtml="http://www.w3.org/1999/xhtml"> | ||||||||
|
Comment on lines
+2
to
+3
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The
Suggested change
|
||||||||
| <url> | ||||||||
| <loc>https://github.com/weby-homelab/LLMtop</loc> | ||||||||
| <changefreq>weekly</changefreq> | ||||||||
| <priority>1.0</priority> | ||||||||
| </url> | ||||||||
| <url> | ||||||||
| <loc>https://github.com/weby-homelab/LLMtop/blob/master/README.md</loc> | ||||||||
| <changefreq>weekly</changefreq> | ||||||||
| <priority>0.9</priority> | ||||||||
| </url> | ||||||||
| <url> | ||||||||
| <loc>https://github.com/weby-homelab/LLMtop/releases</loc> | ||||||||
| <changefreq>weekly</changefreq> | ||||||||
| <priority>0.8</priority> | ||||||||
| </url> | ||||||||
| </urlset> | ||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This new metadata block is redundant and invalid. A structured JSON-LD block already exists in lines 105-122. Furthermore, this new block is formatted as YAML/plain-text instead of valid JSON-LD (which requires JSON format). If you want to update the metadata (e.g., adding
softwareVersionordownloadUrl), you should merge those fields into the existing JSON-LD block on lines 107-121 rather than adding a duplicate, invalid block.