mirror of
https://github.com/cunnie/sslip.io.git
synced 2025-10-06 08:06:53 +08:00
k-v.io has an A record, a pre-requisite for a website
I've chosen to add the website to GKE, not Hetzner, because I get fewer strident abuse messages from GKE. I'm dismayed that when I make a small change to the DNS, I need to go through the laborious release process for it to take effect. Sigh. Maybe that's something I'll fix another day.
This commit is contained in:
@@ -64,6 +64,10 @@ var _ = Describe("sslip.io-dns-server", func() {
|
||||
Eventually(string(digSession.Out.Contents())).Should(MatchRegexp(digResults))
|
||||
Eventually(serverSession.Err).Should(Say(serverLogMessage))
|
||||
},
|
||||
Entry("A (customized) for k-v.io",
|
||||
"@localhost k-v.io +short",
|
||||
`\A104.155.144.4\n\z`,
|
||||
`TypeA k-v.io. \? 104.155.144.4\n$`),
|
||||
Entry("A (customized) for sslip.io",
|
||||
"@localhost sslip.io +short",
|
||||
`\A78.46.204.247\n\z`,
|
||||
|
@@ -154,6 +154,11 @@ var (
|
||||
}, nil // Sender Policy Framework
|
||||
},
|
||||
},
|
||||
"k-v.io.": {
|
||||
A: []dnsmessage.AResource{
|
||||
{A: [4]byte{104, 155, 144, 4}},
|
||||
},
|
||||
},
|
||||
// a global nameserver for sslip.io, a conglomeration of ns-{aws,azure,gce}.sslip.io
|
||||
"ns.sslip.io.": {
|
||||
A: []dnsmessage.AResource{
|
||||
|
Reference in New Issue
Block a user