Created
January 25, 2014 06:36
-
-
Save TheRatG/8612616 to your computer and use it in GitHub Desktop.
Disable cache file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
What you're seeing is probably because the server serving the static files is using the "sendfile()" syscall, which is broken with the VirtualBox file system. You need to disable sendfile() usage in your server. For Apache: | |
EnableSendfile off | |
And for nginx: | |
sendfile off; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment