Raku / raku.org

Source code for https://raku.org/
https://raku.org/
Artistic License 2.0
70 stars 50 forks source link

rakudo files down #124

Closed ghost closed 5 years ago

ghost commented 5 years ago
$ curl -I rakudo.org
HTTP/1.1 200 OK

$ curl -I rakudo.org/files
HTTP/1.1 404 Not Found

$ curl -I rakudo.org/files/
HTTP/1.1 404 Not Found

https://perl6.org/downloads

looks like the page should be pointing here:

http://perl6.org:4242/files

lukasvalle commented 5 years ago

Redirect now to https. Https site returns 200 OK.

curl -I rakudo.org/files
HTTP/1.1 301 Moved Permanently
Location: https://rakudo.org/files

curl -I rakudo.org/files/
HTTP/1.1 301 Moved Permanently
Location: https://rakudo.org/files/

curl -I https://rakudo.org/files
HTTP/1.1 200 OK

curl -I https://rakudo.org/files/
HTTP/1.1 200 OK