blob: abb33066d8c24395e7ad56cd08ac96cfb7a4f472 (
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)
}
|