Skip to content
This repository has been archived by the owner on Oct 20, 2024. It is now read-only.

Commit

Permalink
Merge pull request #18 from tharth0ur/main
Browse files Browse the repository at this point in the history
proj-at/subdomains:main
  • Loading branch information
ocoke authored Jan 17, 2024
2 parents f0c2224 + ffd5c6b commit caabf4b
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 0 deletions.
24 changes: 24 additions & 0 deletions domains/proj.sbs/qrmenu24.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
// change the file to [sub].js
// e.g. `foo.js`
export default {
owner: {
// your github username
user: "tharth0ur",
// your github email
email: "[email protected]",
},
records: [
// can include multiple records, if some of them conflict, may be overwritten
{
// type of DNS record
type: "CNAME",
// content of the record
record: "cname.vercel-dns.com.",
// using Cloudflare CDN
proxied: true,
// TTL, (s), must be between 60 and 86400
ttl: 60,
},
// ...
]
}
32 changes: 32 additions & 0 deletions domains/qrmenu24.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
// change the file to [sub].js
// e.g. `foo.js`
export default {
owner: {
// your github username
user: "tharth0ur",
// your github email
email: "[email protected]",
},
records: [
// can include multiple records, if some of them conflict, may be overwritten
{
// type of DNS record
type: "CNAME",
// content of the record
record: "cname.vercel-dns.com.",
// using Cloudflare CDN
proxied: true,
// TTL, (s), must be between 60 and 86400
ttl: 60,
},
{
// type of DNS record
type: "TXT",
// content of the record
record: "x...",
// TTL, (s), must be between 60 and 86400
ttl: 60,
},
// ...
]
}

0 comments on commit caabf4b

Please sign in to comment.