You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would expect to be served the smaller brotli compressed version as is the case with the non-static filters.
I am using dynamic modules on FreeBSD. I could not figure out if the problem is due to the order the filter modules are loaded (there seems to be no config for the brotli_static module) or possibly even an upstream issue with the gzip_static module.
The text was updated successfully, but these errors were encountered:
i faced this problem too.
I solved this problem by removing disable_symlinks on from = $ document_root;
But this is a necessary setting and I don't want to remove it from the configuration.
When using both
gzip_static
andbrotli_static
, the gzip filter will take precedence over the brotli one with clients that accept both encodings.curl -IL https://... -H "Accept-Encoding: gzip, br"
will return
content-encoding: gzip
I would expect to be served the smaller brotli compressed version as is the case with the non-static filters.
I am using dynamic modules on FreeBSD. I could not figure out if the problem is due to the order the filter modules are loaded (there seems to be no config for the
brotli_static
module) or possibly even an upstream issue with thegzip_static
module.The text was updated successfully, but these errors were encountered: