我正在使用Vagrant / VirtualBox运行Django开发环境。
我正在使用runserver进行本地测试。但是,我遇到了这个错误: https://docs.vagrantup.com/v2/synced-folders/virtualbox.html
这是与sendfile
相关的VirtualBox错误,可能导致文件损坏或无法更新。这是一个简单的修复,我只需要停止运行webserver的sendfile。
在Nginx中,这将是:
sendfile off;
在Apache中,这将是:
EnableSendfile Off
如何停用sendfile
中的runserver
?