http-server icon indicating copy to clipboard operation
http-server copied to clipboard

gz not served

Open Chr96er opened this issue 1 year ago • 3 comments

I'm trying to serve compressed versions of my HTML files. I've added the -g flag and I see Serve GZIP Files: true during startup. I've zipped a test file using gzip.

  • When I try to access the file without the .gz extension I get a 404
  • When I access the file with .gz I get the gzipped file
  • When I copy the unzipped file and try to access that I am served the unzipped file (no Content-Encoding response header) - although for the screenshot I simply copied the compressed file without .gz extension.

As you can see in the screenshot the request header contains Accept-Encoding: gzip.

I'm basically seeing this issue but I'm on version 14.1.1

image

Environment Versions

  1. Node version: 20.8.0 (node:20.8.0-slim docker image)
  2. http-server version: 14.1.1

Steps to reproduce

Run http-server with -g flag and try to access a file (without .gz extension) for which a .gz version is available.

Expected result

The gzipped file is being served and decompressed client side.

Actual result

404 when trying to access the file without .gz extension.

Chr96er avatar Mar 15 '24 15:03 Chr96er

Update: I manually ran fs.stat and hasGzipId12 in an interactive node session on the server (from within docker) and neither fails. !gzipErr is true and isGzip is also true. So I can only assume that something goes wrong before it even gets to that code.

Chr96er avatar Mar 18 '24 16:03 Chr96er

same but for br files

cosmoburn avatar May 12 '24 00:05 cosmoburn

This issue has been inactive for 180 days

github-actions[bot] avatar Mar 20 '25 12:03 github-actions[bot]