golang-github-gorilla-handlers 0.0~git20150820.0.40694b4-1 source package in Ubuntu

Changelog

golang-github-gorilla-handlers (0.0~git20150820.0.40694b4-1) unstable; urgency=medium

  * Initial release

 -- Tianon Gravi <email address hidden>  Sat, 05 Sep 2015 08:05:59 -0700

Upload details

Uploaded by:
Debian Go Packaging Team
Uploaded to:
Sid
Original maintainer:
Debian Go Packaging Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Xenial: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-gorilla-handlers_0.0~git20150820.0.40694b4-1.dsc 2.3 KiB f92dd0d12649efd6e8da0df1c955ed7ea56515e41afc71a80a70f28d9b0772aa
golang-github-gorilla-handlers_0.0~git20150820.0.40694b4.orig.tar.bz2 11.1 KiB 275250b43e3062510a6ef80ccb0b10e00662b38b574cc5a8680a95e9f09b67fd
golang-github-gorilla-handlers_0.0~git20150820.0.40694b4-1.debian.tar.xz 2.7 KiB e7a2414ed720906dfd207fbda97c76007824ef5eb1c723423f7fbdfb8c934abb

No changes file available.

Binary packages built by this source

golang-github-gorilla-handlers-dev: a collection of useful handlers for Go's net/http package

 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:
 .
  • LoggingHandler for logging HTTP requests in the Apache Common Log Format
    (http://httpd.apache.org/docs/2.2/logs.html#common).
  • CombinedLoggingHandler for logging HTTP requests in the Apache Combined Log
    Format (http://httpd.apache.org/docs/2.2/logs.html#combined) commonly used
    by both Apache and nginx.
  • CompressHandler for gzipping responses.
  • ContentTypeHandler for validating requests against a list of accepted
    content types.
  • MethodHandler for matching HTTP methods against handlers in a
    map[string]http.Handler
  • ProxyHeaders for populating r.RemoteAddr and r.URL.Scheme based on the
    X-Forwarded-For, X-Real-IP, X-Forwarded-Proto and RFC7239 Forwarded headers
    when running a Go server behind a HTTP reverse proxy.
  • CanonicalHost for re-directing to the preferred host when handling multiple
    domains (i.e. multiple CNAME aliases).
 .
 Other handlers are documented on the Gorilla website
 (http://www.gorillatoolkit.org/pkg/handlers).