aboutsummaryrefslogtreecommitdiff
path: root/blog.go
diff options
context:
space:
mode:
Diffstat (limited to 'blog.go')
-rw-r--r--blog.go9
1 files changed, 7 insertions, 2 deletions
diff --git a/blog.go b/blog.go
index c1ea0eb..b1cd9bd 100644
--- a/blog.go
+++ b/blog.go
@@ -37,8 +37,13 @@ func init() {
}
http.HandleFunc("/blog", redirect)
http.HandleFunc("/blog/", redirect)
- http.Handle("/fonts/", http.FileServer(http.Dir("static")))
- http.Handle("/fonts.css", http.FileServer(http.Dir("static")))
+
+ // Keep these static file handlers in sync with app.yaml.
+ static := http.FileServer(http.Dir("static"))
+ http.Handle("/favicon.ico", static)
+ http.Handle("/fonts.css", static)
+ http.Handle("/fonts/", static)
+
http.Handle("/lib/godoc/", http.StripPrefix("/lib/godoc/", http.HandlerFunc(staticHandler)))
}