2013-11-26 08:30:19 +00:00
|
|
|
"""Optimizations for Apache.
|
|
|
|
|
|
|
|
|
|
See also `documentation of mod_xsendfile for Apache
|
|
|
|
|
<https://tn123.org/mod_xsendfile/>`_ and :doc:`narrative documentation about
|
|
|
|
|
Apache optimizations </optimizations/apache>`.
|
|
|
|
|
|
|
|
|
|
"""
|
2024-08-05 08:51:17 +00:00
|
|
|
|
2013-11-26 08:30:19 +00:00
|
|
|
# API shortcuts.
|
|
|
|
|
from django_downloadview.apache.decorators import x_sendfile # NoQA
|
2020-01-07 14:18:54 +00:00
|
|
|
from django_downloadview.apache.middlewares import XSendfileMiddleware # NoQA
|
2013-11-26 08:30:19 +00:00
|
|
|
from django_downloadview.apache.response import XSendfileResponse # NoQA
|
|
|
|
|
from django_downloadview.apache.tests import assert_x_sendfile # NoQA
|