Hi, I saw
“You can reduce your startup time if you configure your web server to host .unityweb files using gzip compression.”
In my code, I also found:
on the topic.
Unfortunately I’m quite new to webhosting so, how to do this with ngnix?
Thank you!
location ~ .+.unityweb$ {
root /YourRoot/RootFoloder; #this is very important if you have location root
add_header Content-Encoding gzip;
add_header Content-Type application/octet-stream;
}