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:
in nginx config disable access to desired locations:
location /static/files/fbi { deny all; } location /static/files/cia { deny all; }
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/; }
Configure x_file_accel_redirects app:
Set settings.X_FILE_ACCEL = True.
add "x_file_accel_redirects" to settings.INSTALLED_APPS.
Add app to your root url config, e.g.:
urlpatterns += patterns('', (r'^protected/', include('x_file_accel_redirects.urls')), )
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file django-x_file_accel_redirects-0.0.2.tar.gz
.
File metadata
- Download URL: django-x_file_accel_redirects-0.0.2.tar.gz
- Upload date:
- Size: 5.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 91ee56dcf227fc64229dfa48faaeeef07c1cccc207ba83caa8e7d28dc31a12a8 |
|
MD5 | 6ccfcd20ff83152febe373c7d0c45bc7 |
|
BLAKE2b-256 | 5d1a1f7eed74cbcc262b373f91e7cc01c5f83431776348da44de12d5bfa9ae65 |
File details
Details for the file django-x_file_accel_redirects-0.0.2.linux-x86_64.tar.gz
.
File metadata
- Download URL: django-x_file_accel_redirects-0.0.2.linux-x86_64.tar.gz
- Upload date:
- Size: 9.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7eb3512367442d489622acdb227c19bcab7193f2eeec9c944f59004b627377fe |
|
MD5 | ce6ae5bc9411180726b1ff5357193a8e |
|
BLAKE2b-256 | 655d8e814fa9e546429df648678e3b9e84e33e8aadefe0f66c99b89b45d1f9c4 |