diff options
Diffstat (limited to 'test/go/mirror/app.go')
-rw-r--r-- | test/go/mirror/app.go | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/test/go/mirror/app.go b/test/go/mirror/app.go new file mode 100644 index 00000000..82b1c92d --- /dev/null +++ b/test/go/mirror/app.go @@ -0,0 +1,21 @@ +package main + +import ( + "io" + "fmt" + "net/http" + "nginx/unit" +) + +func handler(w http.ResponseWriter, r *http.Request) { + var buf [32768]byte; + len, _ := r.Body.Read(buf[:]) + + w.Header().Add("Content-Length", fmt.Sprintf("%v", len)) + io.WriteString(w, string(buf[:len])) +} + +func main() { + http.HandleFunc("/", handler) + unit.ListenAndServe(":7080", nil) +} |