-
-
Notifications
You must be signed in to change notification settings - Fork 202
Description
I'm unable to access the biomejs.dev, consistent behavior for the last few months atleast. Located in US northeast.
Error
$ curl https://biomejs.dev
curl: (35) LibreSSL/3.3.6: error:1404B42E:SSL routines:ST_CONNECT:tlsv1 alert protocol version
I have looked at related issues: #1816 and #2329 - however, the conclusion there was that it was an issue with the ISP, or a specific DNS server, and that's not what I am seeing.
Unlike #2329, changing DNS servers does not fix this. All DNS servers return the same broken IP:
# Google DNS
$ dig @8.8.8.8 biomejs.dev +short
18.204.152.241
# Cloudflare DNS
$ dig @1.1.1.1 biomejs.dev +short
18.204.152.241
If I check the record itself I see
dig biomejs.dev CNAME
...
;; AUTHORITY SECTION:
biomejs.dev. 1551 IN SOA dns1.p01.nsone.net. domains+netlify.netlify.com. 1701467254 43200 7200 1209600 3600
But even the nameserver referenced is returning the same IP address.
# Authoritative nameserver (NSOne)
$ dig @dns1.p09.nsone.net biomejs.dev +short
18.204.152.241
If I specifically point at Netlify IP it resolves successfully with no SSL errors, so there isn't an issue with the handshake or certificates themselves.
curl -I --resolve biomejs.dev:443:75.2.60.5 https://biomejs.dev
HTTP/2 200
Fwiw it looks like I'm getting served up a heroku app:
curl -v http://biomejs.dev 2>&1 | grep -i heroku
Via: 1.0 heroku-router
The site doesn't seem to be down for everyone, but I suspect nsone may be doing some geographic routing/load balancing and serving up an old endpoint to my region (US northeast) - let me know if there is additional diagnostic info I can provide!