summaryrefslogtreecommitdiffhomepage
path: root/test/go/404/app.go
blob: 08fe56c984f2a4c0105c690a577eb34de930b549 (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"
	"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)
}