Hacker News new | ask | show | jobs
by Jeaye 1581 days ago
For the site author, thanks for this tool! Clojure has changed the way I program and I've been using it for 6 years now. Anything to help more people get into Clojure is much appreciated, especially if it's REPL-oriented.

For some feedback, you might consider using Let's Encrypt for setting up free TLS certs, or hosting on Github Pages to get it automatically. With just HTTP, my browser (and many others) will show a scary warning telling me not to use the site.

1 comments

Thanks!

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

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