I've been testing out the Google App Engine SDK using Golang and I'm having issues serving a static html page. If I add the content in the app.yaml
under handlers that is fine but when trying to route it from inside my Go application; trying out the url http://localhost:8080/tr
the page returns 404.
My file system is setup as:
/main.go
/app.yaml
/testRoute.html
My main app.go
looks like this:
import (
"fmt"
"net/http"
"github.com/gorilla/mux"
)
func init() {
r := mux.NewRouter()
r.HandleFunc("/", index)
r.HandleFunc("/tr", testRoute)
http.Handle("/", r)
}
func index(w http.ResponseWriter, r *http.Request) {
//No Issues here
fmt.Fprint(w, "Main Index.")
}
func testRoute(w http.ResponseWriter, r *http.Request) {
http.FileServer(http.Dir("testRoute.html")).ServeHTTP(w, r)
}
I fixed this by using the ServeFile method; this also works with folders (eg "/assets/testRoute.html")
You shouldn't use Go handlers to serve static files (unless you want to incorporate other logic such as advanced logging or counting).
You may define static file handlers in your app's configuration file
app.yaml
. This is detailed in the official docs: Static file handlersTo make AppEngine automatically serve a static file, add this entry to your
app.yaml
:To make a whole directory of static files (including subfolders, recursively) to be served automatically, add this entry to
app.yaml
: