Skip to main content

Configurable middleware to add HTTP caching headers for URL's.

Project description

Django Cache Headers

Travis

Overview

Django Cache Headers allows you to set HTTP caching headers for URL patterns according to certain policies. It does not perform any caching itself - it merely sets the headers on the response which are then interpreted by eg. Varnish.

Doing a truly zero-conf Varnish turned out to be fragile, so Django Cache Headers now generates a VCL file that can be included into or adapted to your default Varnish configuration file.

Installation

  1. Install or add django-cache-headers to your Python path.

  2. Add cache_headers to your INSTALLED_APPS setting.

  3. Add cache_headers.middleware.CacheHeadersMiddleware before SessionMiddleware and AuthenticationMiddleware and MessageMiddleware to your MIDDLEWARE_CLASSES setting.

Policies

Django Cache Headers provides four caching policies. You may define your own policies.:

  1. all-users - response is marked as cached once for all users.

  2. anonymous-only - response is marked as cached once only for anonymous users.

  3. anonymous-and-authenticated - response is marked as cached once for anonymous users and once for authenticated users.

  4. per-user - response is marked as cached once for anonymous users and for each authenticated user individually.

Settings

The timeouts key combines the policy, timeout in seconds and URL regexes in a nested dictionary:

CACHE_HEADERS = {
    "timeouts": {
        "all-users": {
            60: (
                "^/all-users/",
            )
        },
        "anonymous-only": {
            60: (
                "^/anonymous-only/",
            )
        },
        "anonymous-and-authenticated": {
            60: (
                "^/anonymous-and-authenticated/",
            )
        },
        "per-user": {
            60: (
                "^/per-user/",
            )
        },
        "custom-policy": {
            60: (
                "^/custom-policy/",
            )
        }
    }
}

Set browser-cache-seconds to specify how long the browser may cache a response before it has to revalidate with the server. It defaults to 5 seconds.:

CACHE_HEADERS = {"browser-cache-seconds": 10}

Set enable-tampering-checks to enable checks that guard against cache poising by tampering with the cookies. Keep this disabled for most unit tests. Unit test’s client.login() does not trigger the normal expected login path.

CACHE_HEADERS = {“enable-tampering-checks”: True}

Varnish configuration

Generate the VCL snippet:

python manage.py generate_vcl > /path/to/generated.vcl

Save the contents of sample.vcl as /etc/varnish/default.vcl. Restart Varnish for the configuration to take effect.

Authors

Praekelt Consulting

  • Hedley Roos

  • Altus Barry

Changelog

0.3.3

  1. Fix anonymous-only policy to consider isauthenticated cookie.

0.3.2

  1. Ensure isauthenticated cookie expires at end of session if session is set to do so.

0.3.1

  1. An anonymous user may in fact have a session. Handle this case gracefully.

0.3

  1. Added vcl generation management command, to be used in tandem with varnish. sample.vcl updated to reflect usage.

  2. Make use of on_user_auth_event to ensure no-cache header is set during login and logout.

  3. Extra protection against tampered session cookie.

  4. Policies no longer makes an assumption on the session cookie name.

0.2.2

  1. Iterate over regexes in order of most specific (longest) to least specific (shortest).

  2. Revert OrderedDict change since it is not required anymore due to the above change.

0.2.1

  1. Use an OrderedDict for guaranteed policy iteration order.

0.2

  1. Ignoring cookies completely when setting headers turned out to be a mistake due to too many security concerns. Restore them.

0.1.3

  1. Handle case where user may also be logged in and a cookie not being set.

0.1.2

  1. Use the s-maxage header for compatability with Varnish.

0.1.1

  1. Leave response untouched if status code is not 200.

0.1

  1. Initial release.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-cache-headers-0.3.3.tar.gz (15.7 kB view details)

Uploaded Source

Built Distribution

django_cache_headers-0.3.3-py2.7.egg (30.9 kB view details)

Uploaded Source

File details

Details for the file django-cache-headers-0.3.3.tar.gz.

File metadata

File hashes

Hashes for django-cache-headers-0.3.3.tar.gz
Algorithm Hash digest
SHA256 62de876797289bc4281e217f0ae6ffd78bf2860622bdda84c9b8ac0583bc0d14
MD5 830bd683b1960ca8efb5e252b0e1d41f
BLAKE2b-256 dc2cbe60f652f8218400e647330c9e8aea5c5a9337c0aa774dc422de8f25da55

See more details on using hashes here.

File details

Details for the file django_cache_headers-0.3.3-py2.7.egg.

File metadata

File hashes

Hashes for django_cache_headers-0.3.3-py2.7.egg
Algorithm Hash digest
SHA256 4be9c5f8c221cdbc8f536b250da143a1b08eacdae8ca47a99ebb3f9c65d46800
MD5 91f27069df3609be7fc9d73f94a13d5e
BLAKE2b-256 1e70b82f2a958544b88103a1c9729043fccdceb812bd281ba28c76241832f8de

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page