Created
December 26, 2025 15:48
-
-
Save ajhalili2006/bf87668df2dc2fee5fcfc5d04cc87597 to your computer and use it in GitHub Desktop.
Example octoDNS-based YAML zonefile for @lorebooks-wiki's subdomain registry. (https://github.com/lorebooks-wiki/registry/blob/e9175f172ca2501acf6208e3a506d19c8516f29e/dns/partials/template.yml)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # SPDX-License-Identifier: MPL-2.0 | |
| # Copied from the github:lorebooks-wiki/registry repository to utilize GitHub Gist built-in embedding support | |
| # for Leaflet.pub and friends. | |
| # Permalink: https://github.com/lorebooks-wiki/registry/blob/e9175f172ca2501acf6208e3a506d19c8516f29e/dns/partials/template.yml | |
| # Description of your project or organization here | |
| # Maintainers: | |
| # - Your name (doesn't have to be legal name) (@github-username, user@email-host.tld, ...) | |
| # CNAME only (w/o Cloudflare proxy) | |
| subdomain: | |
| type: CNAME | |
| ttl: 300 | |
| value: service.tld. | |
| # CNAME with Cloudflare proxy if supported | |
| 1.subdomain: | |
| octodns: | |
| cloudflare: | |
| auto-ttl: true | |
| proxied: true | |
| type: CNAME | |
| ttl: 300 | |
| value: service.tld | |
| # A, AAAA and TXT | |
| 2.subdomain: | |
| - type: A | |
| ttl: 300 | |
| value: 127.0.0.1 | |
| - type: TXT | |
| ttl: 300 | |
| values: | |
| - "your-mom" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment