Files
nginx-unit/test/go/mirror/app.go
2019-08-14 14:06:28 +03:00

22 lines
354 B
Go

package main
import (
"fmt"
"io"
"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)
}