mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-09-01 07:23:19 +00:00
fixed rice issue again
This commit is contained in:
@@ -127,8 +127,11 @@ func main() {
|
|||||||
// create handler for static resources
|
// create handler for static resources
|
||||||
assetserve := http.FileServer(rice.MustFindBox("app").HTTPBox())
|
assetserve := http.FileServer(rice.MustFindBox("app").HTTPBox())
|
||||||
http.Handle("/robots.txt", assetserve)
|
http.Handle("/robots.txt", assetserve)
|
||||||
http.Handle("/", assetserve)
|
|
||||||
http.Handle("/static/", http.StripPrefix("/static", assetserve))
|
http.Handle("/static/", http.StripPrefix("/static", assetserve))
|
||||||
|
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
|
||||||
|
r.URL.Path = "/"
|
||||||
|
assetserve.ServeHTTP(w, r)
|
||||||
|
})
|
||||||
|
|
||||||
// create the router and add middleware
|
// create the router and add middleware
|
||||||
mux := router.New()
|
mux := router.New()
|
||||||
|
Reference in New Issue
Block a user