cerrado @ 981e192d2ed0cc3772f8ba8107a4cfc8dc33d214

fix: Ignore tar files when compressing
 1diff --git a/pkg/ext/compression.go b/pkg/ext/compression.go
 2index 57ad49ad64f6654f9ec39ea50af972f0739d5e44..9e933ef22eb9cfc94962fe018fff50503e11db6e 100644
 3--- a/pkg/ext/compression.go
 4+++ b/pkg/ext/compression.go
 5@@ -26,6 +26,13 @@ }
 6 
 7 func Compress(next http.HandlerFunc) http.HandlerFunc {
 8 	return func(w http.ResponseWriter, r *http.Request) {
 9+
10+		// TODO: hand this better
11+		if strings.HasSuffix(r.URL.Path, ".tar.gz") {
12+			next(w, r)
13+			return
14+		}
15+
16 		if accept, ok := r.Header["Accept-Encoding"]; ok {
17 			if compress, algo := GetCompressionWriter(u.FirstOrZero(accept), w); algo != "" {
18 				defer compress.Close()