Tests: goftm used for Go applications.
This commit is contained in:
@@ -1,22 +1,22 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"io"
|
||||
"io/ioutil"
|
||||
"net/http"
|
||||
"nginx/unit"
|
||||
"io"
|
||||
"io/ioutil"
|
||||
"net/http"
|
||||
"nginx/unit"
|
||||
)
|
||||
|
||||
func handler(w http.ResponseWriter, r *http.Request) {
|
||||
b, e := ioutil.ReadFile("404.html")
|
||||
b, e := ioutil.ReadFile("404.html")
|
||||
|
||||
if e == nil {
|
||||
w.WriteHeader(http.StatusNotFound)
|
||||
io.WriteString(w, string(b))
|
||||
}
|
||||
if e == nil {
|
||||
w.WriteHeader(http.StatusNotFound)
|
||||
io.WriteString(w, string(b))
|
||||
}
|
||||
}
|
||||
|
||||
func main() {
|
||||
http.HandleFunc("/", handler)
|
||||
unit.ListenAndServe(":7080", nil)
|
||||
http.HandleFunc("/", handler)
|
||||
unit.ListenAndServe(":7080", nil)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user