diff --git a/main.go b/main.go index fd93c6b..6ea7576 100644 --- a/main.go +++ b/main.go @@ -13,7 +13,7 @@ func main() { stop := make(chan os.Signal, 1) signal.Notify(stop, os.Interrupt) go func() { - http.Handle("/public/", http.StripPrefix("/", http.FileServer(http.Dir("public")))) + http.Handle("/", http.FileServer(http.Dir("public"))) log.Fatal(http.ListenAndServe(":8080", nil)) }() log.Println("started public fileserver on 8080")