unit/test/go/post_variables/app.go
Max Romanov 693a458b4e Go: changing import name for "unit.nginx.org/go".
This patch includes packaging changes - update unit-go installation
directory.
2019-12-25 20:00:32 +03:00

19 lines
356 B
Go

package main
import (
"net/http"
"unit.nginx.org/go"
)
func handler(w http.ResponseWriter, r *http.Request) {
r.ParseForm()
w.Header().Set("X-Var-1", r.Form.Get("var1"))
w.Header().Set("X-Var-2", r.Form.Get("var2"))
w.Header().Set("X-Var-3", r.Form.Get("var3"))
}
func main() {
http.HandleFunc("/", handler)
unit.ListenAndServe(":7080", nil)
}