用于.unityweb的NGINX设置

时间:2019-07-12 11:30:18

标签: unity3d nginx gzip unity-webgl

我在Google上搜索了很多,但仍然无法解决“如果将Web服务器配置为使用gzip压缩托管.unityweb文件,则可以减少启动时间。”消息。

这是我简单的localhost配置和Chrome Web检查器的屏幕截图。看起来编码工作正常...

提前谢谢!

http {
    include       mime.types;
    default_type  application/octet-stream;

    gzip on;
    gzip_disable "msie6";
    gzip_vary on;
    gzip_proxied any;
    gzip_comp_level 6;
    gzip_buffers 16 8k;
    gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript application/octet-stream .unityweb;

    server {
        listen       80;
        server_name  localhost;

        location / {
            root   html;
            index  index.html index.htm;
            gzip_static  on;
        }

        location ~ .+\.unityweb$ { 
            add_header Content-Encoding gzip; 
            add_header Content-Type application/octet-stream;
        }
    }
}

Chrome web inspector

1 个答案:

答案 0 :(得分:0)

就我而言 清除Web浏览器缓存。 解决。