diff --git a/buildpacks/go/faas/main.go b/buildpacks/go/faas/main.go index bd7854b..074d91c 100644 --- a/buildpacks/go/faas/main.go +++ b/buildpacks/go/faas/main.go @@ -78,7 +78,7 @@ func run() error { if *verbose { fmt.Printf("Initializing HTTP function\n") } - router.Handle("/", httpHandler) + router.Handle("/*", httpHandler) } httpServer := &http.Server{