diff options
| -rw-r--r-- | roseh.moe.go | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/roseh.moe.go b/roseh.moe.go index fc61213..23c13b4 100644 --- a/roseh.moe.go +++ b/roseh.moe.go @@ -1099,18 +1099,17 @@ func main() { r.SetXForwarded() }, }}) - cgitMux := http.NewServeMux() cgitStaticFiles := http.FileServer(http.Dir(*cgit)) - cgitMux.Handle("/cgit.css", cgitStaticFiles) - cgitMux.Handle("/cgit.js", cgitStaticFiles) - cgitMux.HandleFunc("/favicon.ico", favicon) - cgitMux.Handle("/robots.txt", cgitStaticFiles) - cgitMux.Handle("/", &cgi.Handler{ - Path: filepath.Join(*cgit, "cgit.cgi"), - Env: []string{"CGIT_CONFIG=" + *cgitConfig}, - PathLocationHandler: cgitMux, - }) - http.Handle("code."+*domain+"/", cgitMux) + http.Handle("code."+*domain+"/cgit.css", cgitStaticFiles) + http.Handle("code."+*domain+"/cgit.js", cgitStaticFiles) + http.Handle("code."+*domain+"/robots.txt", cgitStaticFiles) + http.HandleFunc("code."+*domain+"/favicon.ico", favicon) + cgitCGI := &cgi.Handler{ + Path: filepath.Join(*cgit, "cgit.cgi"), + Env: []string{"CGIT_CONFIG=" + *cgitConfig}, + } + cgitCGI.PathLocationHandler = cgitCGI + http.Handle("code."+*domain+"/", cgitCGI) addr := fmt.Sprintf(":%d", *port) log.Printf("Listening on %q", addr) |
