I'm testing OpenLiteSpeed on one of my servers, as a potential replacement for Nginx.
One of the things I currently do is pre-compress all CSS and JS files as part of the build process, so the web server doesn't have to do it dynamically. This means that for example, I have files like this:
example.js
example.js.gz
example.js.br
Does Litespeed support serving these files directly rather than compressing the source file itself? On Nginx I use `gzip_static on` and `brotli_static on`
One of the things I currently do is pre-compress all CSS and JS files as part of the build process, so the web server doesn't have to do it dynamically. This means that for example, I have files like this:
example.js
example.js.gz
example.js.br
Does Litespeed support serving these files directly rather than compressing the source file itself? On Nginx I use `gzip_static on` and `brotli_static on`