You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
735 B
28 lines
735 B
package caddygzip
|
|
|
|
import (
|
|
"github.com/caddyserver/caddy/v2"
|
|
"github.com/caddyserver/caddy/v2/modules/caddyhttp/encode"
|
|
)
|
|
|
|
func init() {
|
|
caddy.RegisterModule(GzipPrecompressed{})
|
|
}
|
|
|
|
// GzipPrecompressed provides the file extension for files precompressed with gzip encoding.
|
|
type GzipPrecompressed struct {
|
|
Gzip
|
|
}
|
|
|
|
// CaddyModule returns the Caddy module information.
|
|
func (GzipPrecompressed) CaddyModule() caddy.ModuleInfo {
|
|
return caddy.ModuleInfo{
|
|
ID: "http.precompressed.gzip",
|
|
New: func() caddy.Module { return new(GzipPrecompressed) },
|
|
}
|
|
}
|
|
|
|
// Suffix returns the filename suffix of precompressed files.
|
|
func (GzipPrecompressed) Suffix() string { return ".gz" }
|
|
|
|
var _ encode.Precompressed = (*GzipPrecompressed)(nil)
|
|
|