GET http://localhost:8000/compressed/none
HTTP/1.0 200Content-Length: 12Content-Type: text/html; charset=utf-8```Hello World!```
GET http://localhost:8000/compressed/gzip
HTTP/1.0 200Content-Length: 32Content-Encoding: gzipContent-Type: text/html; charset=utf-8```Hello World!```
GET http://localhost:8000/compressed/zlib
HTTP/1.0 200Content-Length: 20Content-Encoding: deflateContent-Type: text/html; charset=utf-8```Hello World!```
GET http://localhost:8000/compressed/brotli
HTTP/1.0 200Content-Length: 17Content-Encoding: brContent-Type: text/html; charset=utf-8```Hello World!```
GET http://localhost:8000/compressed/brotli_identity
HTTP/1.0 200Content-Length: 17Content-Encoding: br, identityContent-Type: text/html; charset=utf-8```Hello World!```