Skip to main content

Django app to easy configuration of multiple X-File-Accel locations

Project description

This app allowes you to protect static files served by nginx with authorization of your django project

Protecting files

This example will show how to protect 2 file positions from downloading:

  • {static_url}/files/fbi

  • {static_url}/files/cia

In this example we will assume that static url is /static/

Steps to protect files:

  1. in nginx config disable access to desired locations:

    location /static/files/fbi {
        deny all;
    }
    location /static/files/cia {
        deny all;
    }
  2. Add internal path to serve this files. We will add “root” directory to serve both locations with one configuration option:

    # needed for x-file-accell
    location /internal/files/ {
        internal;
        alias $project_base/static/files/;
    }
  3. Configure x_file_accel_redirects app:

    1. Set settings.X_FILE_ACCEL = True.

    2. add "x_file_accel_redirects" to settings.INSTALLED_APPS.

    3. Add app to your root url config, e.g.:

      urlpatterns += patterns('',
          (r'^protected/', include('x_file_accel_redirects.urls')),
      )
    4. In django admin create new instance of x_file_accel_redirects.AccelRedirect with next values:

      • Description: anything meaningful.

      • URL prefix: any latin letters without slashes, e.g. “downloads”.

      • Login required: True.

      • Internal path: “/internal/files/”” (as specified in nginx config).

      • serve document root: optionaly you can specify path to directory with needed files to serve them with django staticfiles app when settings.X_FILE_ACCEL == False.

When everything is configured and restarted you will be able to get file $project_base/static/files/fbi/secrets/ufo.txt by next url:

/protected/downloads/fbi/secrets/ufo.txt (/downloads/ if from “prefix” field of AccelRedirect)

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-x_file_accel_redirects-0.0.2.tar.gz (5.0 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file django-x_file_accel_redirects-0.0.2.tar.gz.

File metadata

File hashes

Hashes for django-x_file_accel_redirects-0.0.2.tar.gz
Algorithm Hash digest
SHA256 91ee56dcf227fc64229dfa48faaeeef07c1cccc207ba83caa8e7d28dc31a12a8
MD5 6ccfcd20ff83152febe373c7d0c45bc7
BLAKE2b-256 5d1a1f7eed74cbcc262b373f91e7cc01c5f83431776348da44de12d5bfa9ae65

See more details on using hashes here.

File details

Details for the file django-x_file_accel_redirects-0.0.2.linux-x86_64.tar.gz.

File metadata

File hashes

Hashes for django-x_file_accel_redirects-0.0.2.linux-x86_64.tar.gz
Algorithm Hash digest
SHA256 7eb3512367442d489622acdb227c19bcab7193f2eeec9c944f59004b627377fe
MD5 ce6ae5bc9411180726b1ff5357193a8e
BLAKE2b-256 655d8e814fa9e546429df648678e3b9e84e33e8aadefe0f66c99b89b45d1f9c4

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