openhatch

Issue549

Title link behind top logo on blog page is broken 404
Milestone 0.11.07 Priority urgent
Waiting On Status resolved
Superseder Nosy List paulproteus, reedstrm
Assigned To paulproteus Keywords

Created on 2011-08-18.15:12:25 by reedstrm, last changed 2011-08-21.02:49:32 by paulproteus.

Messages
msg2360 (view) Author: paulproteus Date: 2011-08-21.02:49:31
Fixed with this change to nginx configuration:

linode:/etc/nginx# git diff sites-available/default
diff --git a/nginx/sites-available/default b/nginx/sites-available/default
index 269a022..cc1c72c 100644
--- a/nginx/sites-available/default
+++ b/nginx/sites-available/default
@@ -20,7 +20,7 @@ server {
 
        root   /home/deploy/milestone-a/mysite/static/_cache/;
 
-       location /blog/ { 
+       location /blog { 
                root /var/www/;
                index  index.php;
 
Resolved! Mega thanks for reporting this, reedstrm.
msg2356 (view) Author: paulproteus Date: 2011-08-20.20:33:41
I can take this. This is pretty critical; thanks for reporting it, reedstrm!
msg2324 (view) Author: reedstrm Date: 2011-08-18.15:12:24
The link behind the logo image at the top of the blog page (either top page or
any individual entry) is https://openhatch.org/blog while it should be
https://openhatch.org/blog/ (trailing slash missing) This could be an issue is
the http server config, if the underlying software is able handle either case.
(e.g., in Apache, and alias for /doc/ doesn't match /doc) Otherwise, a template
issue.
History
Date User Action Args
2011-08-21 02:49:32paulproteussetstatus: chatting -> resolved
messages: + msg2360
2011-08-20 20:33:41paulproteussetstatus: unread -> chatting
assignedto: paulproteus
messages: + msg2356
milestone: 0.11.07
2011-08-18 15:12:25reedstrmcreate