Nginx配置文件:
server {
# 网站端口号
listen 8686;
server_name _;
# 网站跟路径
root /cxhx/www;
# Load configuration files for the default server block.
include /etc/nginx/default.d/*.conf;
error_page 404 /404.html;
location = /404.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
# .unityweb类型文件添加gzip压缩头
# 如果Unity中未开启gzip,关闭该配置
location ~ .+\.unityweb$ {
add_header Content-Encoding gzip;
}
# wasm使用gzip压缩,设置MIME type为application/wasm wasm
location ~ .+\.wasm$ {
add_header Content-Encoding gzip;
types {
application/wasm wasm;
}
}
}
坑
修改完配置文件使用 nginx -s reload 命令重启网站,浏览器刷新的时候经常不起作用,可能是缓存引起的问题。测试的的时候通过修改端口跳过该问题。(切换端口可以跳过该问题)