Я установил заголовки apache dev:
sudo apt-get install apache2-prefork-dev
Скачал и скомпилировал модуль, как описано здесь: http://tn123.ath.cx/mod_xsendfile/
В /etc/apache2/mods-available/xsendfile.load добавлена следующая строка:
LoadModule xsendfile_module /usr/lib/apache2/modules/mod_xsendfile.so
Добавил это в мой VirtualHost:
<VirtualHost *:80>
XSendFile on
XSendFilePath /path/to/protected/files/
Включил модуль, выполнив:
sudo a2enmod xsendfile
Затем я перезапустил Apache. Тогда этот код по-прежнему предоставляет мне пустой файл с 0 байтами:
file_path = '/path/to/protected/files/some_file.zip'
file_name = 'some_file.zip'
response = HttpResponse('', mimetype='application/zip')
response['Content-Disposition'] = 'attachment; filename=%s' % smart_str(file_name)
response['X-Sendfile'] = smart_str(file_path)
return response
И в журнале ошибок Apache нет файла XSendFile. Что я делаю не так?
Я заставил свой код работать. Единственная разница:
def serve_file(request, file):
response = HttpResponse(mimetype='application/force-download')
response['Content-Disposition'] = 'attachment; filename="%s"' % smart_str(os.path.basename(_(file.file.name)))
response['X-Sendfile'] = smart_str(_(file.file.path))
# It's usually a good idea to set the 'Content-Length' header too.
# You can also set any other required headers: Cache-Control, etc.
return response