diff options
Diffstat (limited to 'test/go/404/app.go')
-rw-r--r-- | test/go/404/app.go | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/test/go/404/app.go b/test/go/404/app.go new file mode 100644 index 00000000..abb33066 --- /dev/null +++ b/test/go/404/app.go @@ -0,0 +1,22 @@ +package main + +import ( + "io" + "io/ioutil" + "net/http" + "nginx/unit" +) + +func handler(w http.ResponseWriter, r *http.Request) { + b, e := ioutil.ReadFile("404.html") + + if e == nil { + w.WriteHeader(http.StatusNotFound) + io.WriteString(w, string(b)) + } +} + +func main() { + http.HandleFunc("/", handler) + unit.ListenAndServe(":7080", nil) +} |