rakudo / rakudo.org

Code for rakudo.org website
https://rakudo.org/
Artistic License 2.0
8 stars 18 forks source link

https://rakudo.org/bugs is 404 #37

Closed skaji closed 4 years ago

skaji commented 4 years ago

README.md in https://rakudo.org/dl/rakudo/rakudo-moar-2020.02.1-01-win-x86_64.zip says

Reporting bugs
==============

See https://rakudo.org/bugs

but, https://rakudo.org/bugs is 404

smasher164 commented 4 years ago

I see a similar 404 for https://rakudo.org/latest/star/macos.

coke commented 4 years ago

the macos link is working now, even though /bugs is not

coke commented 4 years ago
diff --git a/nginx.conf b/nginx.conf
index f6a1737..41089a7 100644
--- a/nginx.conf
+++ b/nginx.conf
@@ -39,6 +39,10 @@ server {
         return 302 /community;
     }

+    location ~ /bugs {
+        return 301 /issue-trackers;
+    }
+
     location / {
         proxy_pass http://127.0.0.1:4242;
         proxy_http_version 1.1;
coke commented 4 years ago

@timo - can you add this to the nginx.conf hosting the site and make sure the copy of nginx.conf in the repo matches the deployed version?

skaji commented 4 years ago

@coke Thanks.

I checked the latest release https://rakudo.org/dl/rakudo/rakudo-moar-2020.06-01-win-x86_64.zip, and now it said

Reporting bugs
==============

See https://rakudo.org/issue-trackers

That is, the link in README.md was fixed in the latest release.

@coke Feel free to close this issue.

Altai-man commented 4 years ago

Thank you for reporting! Closing.