Tests: goftm used for Go applications.
This commit is contained in:
@@ -1,19 +1,19 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
"nginx/unit"
|
||||
"net/http"
|
||||
"nginx/unit"
|
||||
)
|
||||
|
||||
func handler(w http.ResponseWriter, r *http.Request) {
|
||||
r.ParseForm()
|
||||
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"))
|
||||
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)
|
||||
http.HandleFunc("/", handler)
|
||||
unit.ListenAndServe(":7080", nil)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user