cmd/coordinator: only serve status at the root

Change-Id: I11bc07c81180885075579fae9c758eff9785687a
Reviewed-on: https://go-review.googlesource.com/16958
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
diff --git a/cmd/coordinator/status.go b/cmd/coordinator/status.go
index 7129c6c..d4de736 100644
--- a/cmd/coordinator/status.go
+++ b/cmd/coordinator/status.go
@@ -16,6 +16,10 @@
 )
 
 func handleStatus(w http.ResponseWriter, r *http.Request) {
+	if r.URL.Path != "/" {
+		http.NotFound(w, r)
+		return
+	}
 	round := func(t time.Duration) time.Duration {
 		return t / time.Second * time.Second
 	}