Hacker News new | ask | show | jobs
by silcoon 1577 days ago
Thanks!

https://tryclojure.org/ is working correctly. I'm figuring out why Netlify is not redirecting automatically.

1 comments

For the record, http:// is redirecting to https:// for me currently.

  $ date -u
  Tue 22 Feb 2022 09:12:56 UTC
Are you certain that's not a client-side redirect a la Https Everywhere?
I'm not using Https Everywhere, but just to check I tried with curl and get a 301 redirect:

  $ curl -v http://tryclojure.org/ 2>&1 | grep "HTTP\|location"
  > GET / HTTP/1.1
  < HTTP/1.1 301 Moved Permanently
  < location: https://tryclojure.org/
I doubt that anything smart on the network is redirecting:

  $ dig a tryclojure.org
  tryclojure.org.         12      IN      A       206.189.50.215
  tryclojure.org.         12      IN      A       18.192.76.182
Netlify took a bit to get the certificate but now is redirecting correctly! Thanks