summaryrefslogblamecommitdiffhomepage
path: root/pkg/rpm/rpmbuild/SOURCES/unit.example-go-app
blob: 7ca0c9fd1528e010fa71d079a22d9487118d641d (plain) (tree)
1
2
3
4
5
6




              
                













                                                      
package main

import (
    "fmt"
    "net/http"
    "nginx/unit"
)

func handler(w http.ResponseWriter, r *http.Request) {
    w.Header().Add("Content-Type", "text/plain");

    fmt.Fprintf(w, "Method : %s\n", r.Method)
    fmt.Fprintf(w, "URL    : %s\n", r.URL.Path)
    fmt.Fprintf(w, "Host   : %s\n", r.Host)
}

func main() {
    http.HandleFunc("/", handler)
    unit.ListenAndServe("8000", nil)
}