mirror of
https://github.com/jazzband/django-downloadview.git
synced 2026-03-16 22:40:25 +00:00
14 lines
574 B
Python
14 lines
574 B
Python
"""Optimizations for Lighttpd.
|
|
|
|
See also `documentation of X-Sendfile for Lighttpd
|
|
<http://redmine.lighttpd.net/projects/lighttpd/wiki/X-LIGHTTPD-send-file>`_ and
|
|
:doc:`narrative documentation about Lighttpd optimizations
|
|
</optimizations/lighttpd>`.
|
|
|
|
"""
|
|
|
|
# API shortcuts.
|
|
from django_downloadview.lighttpd.decorators import x_sendfile # NoQA
|
|
from django_downloadview.lighttpd.middlewares import XSendfileMiddleware # NoQA
|
|
from django_downloadview.lighttpd.response import XSendfileResponse # NoQA
|
|
from django_downloadview.lighttpd.tests import assert_x_sendfile # NoQA
|