summaryrefslogtreecommitdiffhomepage
path: root/test/go/post_variables/app.go
blob: 433afc62232e5bd274b70b1a372dba5ab07c3c68 (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"
    "nginx/unit"
)

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)
}