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 #21 from MazenGohar/main
Browse files Browse the repository at this point in the history
Create thehome.js
  • Loading branch information
ocoke authored Jan 25, 2024
2 parents 9ed476a + 55a323c commit 20be5e0
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions domains/thehome.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
// change the file to [sub].js
export default {
owner: {
// your github username
user: "mazengohar",
// your github email
email: "mazengohar10@gmail.com",
},
records: [
// can include multiple records, if some of them conflict, may be overwritten
{
// type of DNS record
type: "NS",
record: "dns1.freehostia.com",
// using Cloudflare CDN
proxied: true,
// TTL, (s), must be between 60 and 86400
ttl: 60,
},
{
// type of DNS record
type: "NS",
record: "dns2.freehostia.com",
// using Cloudflare CDN
proxied: true,
// TTL, (s), must be between 60 and 86400
ttl: 60,
},
]
}

0 comments on commit 20be5e0

Please sign in to comment.