golang-github-gorilla-handlers 1.1-3 source package in Ubuntu

Changelog

golang-github-gorilla-handlers (1.1-3) unstable; urgency=medium

  * Replace golang-go with golang-any in Build-Depends, remove golang-go from Depends

 -- Konstantinos Margaritis <email address hidden>  Tue, 08 Aug 2017 20:26:01 +0300

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
Bionic release universe misc

Builds

Artful: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-gorilla-handlers_1.1-3.dsc 2.2 KiB e26920244c4cc69f0dbc47e4f6234f93519400bae4671055aa70cefc59b98c2f
golang-github-gorilla-handlers_1.1.orig.tar.gz 16.5 KiB e55f70d97ab93acfe58bf57f3a1745ba71af34834868b34a5b15e3e251a6bd42
golang-github-gorilla-handlers_1.1-3.debian.tar.xz 3.1 KiB 11dea711f76ecc02559e5dbfe4058908128a24f771334cb77283043dd7005f58

Available diffs

No changes file available.

Binary packages built by this source

golang-github-gorilla-handlers-dev: 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).