···1111// Checks for gitprotocol-http(5) specific smells; if found, passes
1212// the request on to the git http service, else render the web frontend.
1313func (d *deps) Multiplex(w http.ResponseWriter, r *http.Request) {
1414+ name := r.PathValue("name")
1515+ if d.isIgnored(name) {
1616+ d.Write404(w)
1717+ return
1818+ }
1919+1420 path := r.PathValue("rest")
15211622 if r.URL.RawQuery == "service=git-receive-pack" {