minio/vendor/github.com/gorilla/handlers
Harshavardhana 35d438e0ff vendorize: update all vendorized packages. (#2206)
Bring in new changes from upstream for all the packages.

Important ones include
   - gorilla/mux
   - logrus
   - jwt
2016-07-14 14:59:20 -07:00
..
canonical.go browser-assets: serve asset files with compression. 2016-03-04 07:47:26 +05:30
compress.go browser-assets: serve asset files with compression. 2016-03-04 07:47:26 +05:30
cors.go vendorize: update all vendorized packages. (#2206) 2016-07-14 14:59:20 -07:00
doc.go browser-assets: serve asset files with compression. 2016-03-04 07:47:26 +05:30
handlers.go browser-assets: serve asset files with compression. 2016-03-04 07:47:26 +05:30
LICENSE browser-assets: serve asset files with compression. 2016-03-04 07:47:26 +05:30
proxy_headers.go browser-assets: serve asset files with compression. 2016-03-04 07:47:26 +05:30
README.md browser-assets: serve asset files with compression. 2016-03-04 07:47:26 +05:30
recovery.go browser-assets: serve asset files with compression. 2016-03-04 07:47:26 +05:30

gorilla/handlers

GoDoc Build Status

Package handlers is a collection of handlers (aka "HTTP middleware") for use with Go's net/http package (or any framework supporting http.Handler), including:

Other handlers are documented on the Gorilla website.

Example

A simple example using handlers.LoggingHandler and handlers.CompressHandler:

import (
    "net/http"
    "github.com/gorilla/handlers"
)

func main() {
    r := http.NewServeMux()

    // Only log requests to our admin dashboard to stdout
    r.Handle("/admin", handlers.LoggingHandler(os.Stdout, http.HandlerFunc(ShowAdminDashboard)))
    r.HandleFunc("/", ShowIndex)

    // Wrap our server with our gzip handler to gzip compress all responses.
    http.ListenAndServe(":8000", handlers.CompressHandler(r))
}

License

BSD licensed. See the included LICENSE file for details.