Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions domains/minikip.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"owner": {
"username": "minikip",
"email": "minikip@proton.me"
},
"records": {
"A": ["75.2.60.5"]
Copy link

Copilot AI Apr 17, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hard-coding an A record to 75.2.60.5 can be brittle if the hosting provider changes the recommended IPs. If this is intended to point to Netlify/another managed platform, prefer the provider’s recommended configuration (often A records with multiple IPs or using a CNAME/ALIAS at apex if supported by the is-a.dev system) to improve reliability.

Suggested change
"A": ["75.2.60.5"]
"A": ["75.2.60.5", "99.83.190.102"]

Copilot uses AI. Check for mistakes.
}
}
9 changes: 9 additions & 0 deletions domains/www.minikip.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"owner": {
"username": "minikip",
"email": "minikip@proton.me"
},
"records": {
"CNAME": "minikip.netlify.app"
Copy link

Copilot AI Apr 17, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Netlify (and many hosted DNS targets) typically expect the CNAME target to be a fully-qualified domain name. Consider using a trailing dot (minikip.netlify.app.) to avoid any chance of the DNS provider/applying system treating it as relative.

Suggested change
"CNAME": "minikip.netlify.app"
"CNAME": "minikip.netlify.app."

Copilot uses AI. Check for mistakes.
}
}
Loading