summaryrefslogtreecommitdiffhomepage
path: root/test/go/post_variables/app.go
blob: 06900d4c6a3f928d4232a8667241a4c9eadb9676 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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(":8080", nil)
}