summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--roseh.moe.go16
1 files changed, 9 insertions, 7 deletions
diff --git a/roseh.moe.go b/roseh.moe.go
index b1cf181..5bc02d8 100644
--- a/roseh.moe.go
+++ b/roseh.moe.go
@@ -1099,17 +1099,19 @@ func main() {
r.SetXForwarded()
},
}})
+ cgitMux := http.NewServeMux()
cgitStaticFiles := http.FileServer(http.Dir(*cgit))
- http.Handle("code."+*domain+"/cgit.css", cgitStaticFiles)
- http.Handle("code."+*domain+"/cgit.js", cgitStaticFiles)
- http.Handle("code."+*domain+"/cgit.png", cgitStaticFiles)
- http.Handle("code."+*domain+"/favicon.ico", cgitStaticFiles)
- http.Handle("code."+*domain+"/robots.txt", cgitStaticFiles)
- http.Handle("code."+*domain+"/", &cgi.Handler{
+ cgitMux.Handle("/cgit.css", cgitStaticFiles)
+ cgitMux.Handle("/cgit.js", cgitStaticFiles)
+ cgitMux.Handle("/cgit.png", cgitStaticFiles)
+ cgitMux.Handle("/favicon.ico", cgitStaticFiles)
+ cgitMux.Handle("/robots.txt", cgitStaticFiles)
+ cgitMux.Handle("/", &cgi.Handler{
Path: filepath.Join(*cgit, "cgit.cgi"),
Env: []string{"CGIT_CONFIG=" + *cgitConfig},
- PathLocationHandler: http.DefaultServeMux,
+ PathLocationHandler: cgitMux,
})
+ http.Handle("code."+*domain+"/", cgitMux)
addr := fmt.Sprintf(":%d", *port)
log.Printf("Listening on %q", addr)