summaryrefslogtreecommitdiffhomepage
path: root/test/go/404/app.go
blob: 255f5dac5a8d003f4d856b96a317fdf4aed3e261 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package main

import (
	"io"
	"io/ioutil"
	"net/http"
	"unit.nginx.org/go"
)

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(":8080", nil)
}