Some test text!
Web / FAQ / Content encoding warnings
WebViewer contains certain large files that are already compressed using brotli (abbreviated br) or gzip encoding. As the warning suggests for ideal performance your server should be adjusted to serve these files with the HTTP Content-Encoding header. (see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Encoding for more details on Content-Encoding).
The main reason for this is that with this header the browser can quickly decompress these files using native code. Note that WebViewer can still function by decompressing these files in JavaScript, but this may have an impact on loading speed.
The second reason that can impact performance is that the workers will have to be fetched twice. This is due to the workers being uncompressed and the JavaScript having to fetch the files to decompress. This can be seen in the network tab of the browser's developer tools and can add a delay to the WebViewer loading time depending on the network speed.
Note that in order to serve files with Content-Encoding: br your site must use HTTPS rather than HTTP. This is due to behaviour in certain browsers (in particular Chrome) that leads them to reject brotli encoding served over HTTP.
The goal is to serve files within WebViewer containing ".gz." in their file name with "Content-Encoding: gzip" and files containing ".br." in their file name with "Content-Encoding: br".
WebViewer includes a .htaccess
file in the core
directory (eg. WebViewer/lib/core
) that implements this logic for you.
Please make sure the .htaccess
file got copied over to your server, and that .htaccess
files are enabled. Please also make sure that your server has mod_headers
enabled.
core
directory (eg. WebViewer/lib/core
).Trial setup questions? Ask experts on Discord
Need other help? Contact Support
Pricing or product questions? Contact Sales