VirtualBox
- 2 ответа
- 0 вопросов
0
Вклад в тег
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;
Best, Mitchell