Oban Pro website down

Hey, it seems that the Oban Pro website is down: https://oban.pro/

We are using:

mix hex.repo add oban https://getoban.pro/repo \                                                                
    --fetch-public-key SHA256:4/OSKi0NRF91QVVXlGAhb/BIMLnK8NHcx/EWs+aIWPc \
    --auth-key $OBAN_LICENSE_KEY

to get it, so it kills our CI.

Anyone knows what could be the problem?

Cloudflare has some issues worldwide: https://www.cloudflarestatus.com

2 Likes

This is indeed because of the worldwide cloudflare outage. Our servers are up, but we can’t switch the DNS over because the Cloudflare dashboard isn’t operational :person_facepalming:

3 Likes

In case this helps, this was posted on HN:

If anyone needs commands for turning off the CF proxy for their domains and happens to have a Cloudflare API token.

First you can grab the zone ID via:

curl -X GET "https://api.cloudflare.com/client/v4/zones" -H "Authorization: Bearer $API_TOKEN" -H "Content-Type: application/json" | jq -r '.result[] | "\(.id) \(.name)"'

And a list of DNS records using:

curl -X GET "https://api.cloudflare.com/client/v4/zones/$ZONE_ID/dns_records" -H "Authorization: Bearer $API_TOKEN" -H "Content-Type: application/json"

Each DNS record will have an ID associated. Finally patch the relevant records:

curl -X PATCH "https://api.cloudflare.com/client/v4/zones/$ZONE_ID/dns_records/$RECORD_ID" -H "Authorization: Bearer $API_TOKEN" -H "Content-Type: application/json" --data '{"proxied":false}'

Copying from a sibling comment - some warnings:

  • SSL/TLS: You will likely lose your Cloudflare-provided SSL certificate. Your site will only work if your origin server has its own valid certificate.
  • Security & Performance: You will lose the performance benefits (caching, minification, global edge network) and security protections (DDoS mitigation, WAF) that Cloudflare provides.
  • This will also reveal your backend internal IP addresses. Anyone can find permanent logs of public IP addresses used by even obscure domain names, so potential adversaries don’t necessarily have to be paying attention at the exact right time to find it.
3 Likes

Ja, indeed. For these factors we are using Cloudflare.
Thank you for reaching out!

1 Like

Hi @sorenone / @sorentwo, looks like there’s another outage occurring today. The hex repo has been inaccessible all day. Is this a known issue or related to an upstream outage?

Edit: appears it may be a DNSSEC issue.

Hi @barkerja,

Thanks for the ping!

Yes, this was a DNSSEC issue caused by our registrar automatically rotating keys. We are unable to disable this during the rotation, and out provider didn’t respond to our request. (Probably due to the holiday/weekend combo).

We are tightening up our DNS to prevent any future issues during rotations. We have kicked off the process and anticipate this being completed in the next week. Essentially, once it’s unlocked.

We apologize for any inconvenience this has caused!!

3 Likes