浏览器总是得到未压缩的脚本使用 Brotli 预压缩

问题描述

我使用 brotli 来预压缩我的脚本。这是我的脚本

enter image description here

Nginx 配置:

root /var/www/laravel/public;

server_name mysite.com;

add_header x-frame-options "SAMEORIGIN";
add_header X-XSS-Protection "1; mode=block";
add_header X-Content-Type-Options "nosniff";

index index.PHP;

charset utf-8;

location / {
    try_files $uri $uri/ /index.PHP?$query_string;
}

location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt  { access_log off; log_not_found off; }

error_page 404 /index.PHP;

location ~ \.PHP$ {
    fastcgi_pass unix:/var/run/PHP/PHP7.4-fpm.sock;
    fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
    include fastcgi_params;
}

location ~ /\.(?!well-kNown).* {
    deny all;
}

listen 443 ssl;
ssl_certificate /etc/letsencrypt/live/mysite/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/mysite/privkey.pem; # managed by Certbot
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem;

brotli on;
brotli_static on;
brotli_types *;

这是chrome的截图:

enter image description here

标题。我猜他们是对的

enter image description here

但是 chrome 仍然得到未压缩的文件!当我将节流设置为“快速 3G”时,chrome 会缓慢下载 1.6MB 的未压缩脚本。我做错了什么?

解决方法

问题出在我的防病毒软件上。我正在使用 ESET NOD32。我禁用了 http 协议检查,现在我在浏览器中获取压缩文件。