A very efficient and simple Django middleware to obtain the real IP address from the headers sent by a trusted load balancer
Project description
Behind-LB is a very simple and efficient Django middleware to obtain the client IP address when the project runs behind a trusted load balancer.
It allows to specify the path that activate the middleware, for example / or /a/specific/path. The path must be specified in the variable BEHIND_LB_PATH in your settings.py.
It works with any load balancer that sends the public remote address in a fixed relative position in the header (first, second,… , last). For example, Amazon ELB puts it in the last position, Google Compute Load Balancer in the penultimate one. The position must be specified in settings.BEHIND_LB_POSITION.
Quick start
Install the package:
pip install django-behind-lb
Just add django-behind-lb to your INSTALLED_APPS setting like this:
MIDDLEWARE_CLASSES = ( 'behind_lb.middleware.BehindLB', ...Configure the path and position in settings.py:
BEHIND_LB_PATH = "/" BEHIND_LB_POSITION = -2 # For Google Compute Engine
Try it reading the default request.META['REMOTE_ADDR'] in a View class. It should read the real client IP.
Position options
The BEHIND_LB_PATH value specifies the position of the real IP address in the X-Forwarded-For header, where 0 is the first (or “left”), 1 the second, -2 the penultimate position and -1 the last one. Examples:
BEHIND_LB_POSITION = 0 # First BEHIND_LB_POSITION = -2 # Next to last, for Google Compute Engine LB BEHIND_LB_POSITION = -1 # Last, for Amazon EC2 LB
In Github
The code is available at https://github.com/APSL/django-behind-lb
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
File details
Details for the file django-behind-lb-1.0.2.tar.gz.
File metadata
- Download URL: django-behind-lb-1.0.2.tar.gz
- Upload date:
- Size: 3.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9995fa77d719bb725fbfb7651b9d5aa15bc8aad45f57a9ac85cbc531836292be
|
|
| MD5 |
3c89b345355285288561cc29767ad426
|
|
| BLAKE2b-256 |
a8e052017efb7a9d45906a49c613efe52f3efacc60ad92f7b0a48ce16070a6e5
|