pyscaffold icon indicating copy to clipboard operation
pyscaffold copied to clipboard

https://pyscaffold.org's DNS is misconfigured

Open webknjaz opened this issue 1 year ago • 7 comments

This is causing problems with the link checkers, besides being inaccessible: https://github.com/pypa/packaging.python.org/actions/runs/9750566682/job/26910254850?pr=1569

webknjaz avatar Jul 01 '24 22:07 webknjaz

For anybody landing on this page from google, the last archived snapshot of the website is available at https://web.archive.org/web/20240502194201/https://pyscaffold.org/en/stable/.

webknjaz avatar Jul 01 '24 22:07 webknjaz

Aha.. So it's backed by RTD! And there was a successful build today even: https://app.readthedocs.org/projects/pyscaffold/builds/?version__slug=&state=succeeded&version__type=.

webknjaz avatar Jul 01 '24 22:07 webknjaz

I know that CloudFlare doesn't like it when a domain for a website hosted on RTD is put in DNS proxy mode. That's probably what's happened.

webknjaz avatar Jul 01 '24 22:07 webknjaz

Yep, that's it! The A-records point to CloudFlare CDN:

$ dig @1.1.1.1 www.pyscaffold.org a    

; <<>> DiG 9.16.42 <<>> @1.1.1.1 www.pyscaffold.org a
; (1 server found)
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 53004
;; flags: qr rd ra; QUERY: 1, ANSWER: 2, AUTHORITY: 0, ADDITIONAL: 1

;; OPT PSEUDOSECTION:
; EDNS: version: 0, flags:; udp: 1232
;; QUESTION SECTION:
;www.pyscaffold.org.		IN	A

;; ANSWER SECTION:
www.pyscaffold.org.	234	IN	A	188.114.96.9
www.pyscaffold.org.	234	IN	A	188.114.97.9

;; Query time: 6 msec
;; SERVER: 1.1.1.1#53(1.1.1.1)
;; WHEN: Tue Jul 02 00:42:36 CEST 2024
;; MSG SIZE  rcvd: 79


$ dig @1.1.1.1 pyscaffold.org a    

; <<>> DiG 9.16.42 <<>> @1.1.1.1 pyscaffold.org a
; (1 server found)
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 50181
;; flags: qr rd ra; QUERY: 1, ANSWER: 2, AUTHORITY: 0, ADDITIONAL: 1

;; OPT PSEUDOSECTION:
; EDNS: version: 0, flags:; udp: 1232
;; QUESTION SECTION:
;pyscaffold.org.			IN	A

;; ANSWER SECTION:
pyscaffold.org.		226	IN	A	188.114.97.9
pyscaffold.org.		226	IN	A	188.114.96.9

;; Query time: 13 msec
;; SERVER: 1.1.1.1#53(1.1.1.1)
;; WHEN: Tue Jul 02 00:42:40 CEST 2024
;; MSG SIZE  rcvd: 75


$ dig -x 188.114.97.9

; <<>> DiG 9.16.42 <<>> -x 188.114.97.9
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NXDOMAIN, id: 61268
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 1

;; OPT PSEUDOSECTION:
; EDNS: version: 0, flags:; udp: 512
;; QUESTION SECTION:
;9.97.114.188.in-addr.arpa.	IN	PTR

;; AUTHORITY SECTION:
97.114.188.in-addr.arpa. 629	IN	SOA	darl.ns.cloudflare.com. dns.cloudflare.com. 2288625646 10000 2400 604800 3600

;; Query time: 13 msec
;; SERVER: 127.0.0.1#53(127.0.0.1)
;; WHEN: Tue Jul 02 00:42:45 CEST 2024
;; MSG SIZE  rcvd: 116

webknjaz avatar Jul 01 '24 22:07 webknjaz

@abravalheri @FlorianWilhelm I assume one of you has access to CF? The fix is to click on that cloud icon next to the @ and www A-records and this should get back to normal.

webknjaz avatar Jul 01 '24 22:07 webknjaz

Any update here? Still seeing:

image

sgbaird avatar Jul 15 '24 16:07 sgbaird

For anybody landing on this page from google, the last archived snapshot of the website is available at https://web.archive.org/web/20240502194201/https://pyscaffold.org/en/stable/.

Thanks! This is helpful! Hope the maintainers can take a look at the PR you raised and resolve it.

Haleshot avatar Jul 21 '24 03:07 Haleshot

Apparently, it's working again.

webknjaz avatar Sep 16 '24 20:09 webknjaz