如何在Django runserver中停用sendfile()

时间:2015-01-17 13:01:32

标签: python django apache nginx

我正在使用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

0 个答案:

没有答案