Flask middleware to fix HTTPS redirection behind reverse proxy.
Project description
Provide a middleware for Flask application, to fix redirection issue when the application runs behind a reverse proxy, like Nginx.
The redirection issue is that, when your website is HTTPS and a view returns a 301/302 reponse, the new URL mistakenly becomes HTTP.
This resolution requires you to configure Nginx so that it passes a custom header, to inform the scheme (HTTPS) of the original request. To do that, you just need to setup like this in your Nginx virtualhost config:
location / {
include proxy_params;
proxy_pass http://localhost:8000;
}
This is the common setup for Nginx on Debian/Ubuntu. Nginx on other distros may not have proxy_params file, you can add configuration like this:
location / {
proxy_pass http://localhost:8000;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
Currently, Flask Behind Proxy is only tested with Nginx web server.
Install
pip install flask-behind-proxy
Usage
from flask import Flask
from flask_behind_proxy import FlaskBehindProxy
app = Flask(__name__)
proxied = FlaskBehindProxy(app)
Other implementation
Other implementation is Flask Reverse Proxy. It is based on a header name that is not “standard” (in my terms, it is the name chosen by Debian/Ubuntu maintainer). I chose to make a new software myself, instead of contributing to Flask Reverse Proxy, because wilbertom seems not to be very reactive, and I want to have a clean code, without Python 2 backward compatibility, and newer tool (like pyproject.toml file).
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 flask-behind-proxy-0.1.1.tar.gz
.
File metadata
- Download URL: flask-behind-proxy-0.1.1.tar.gz
- Upload date:
- Size: 3.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.0a2 CPython/3.6.7 Linux/4.18.0-15-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ca82756f78ec4c23420e47148fb2d853b4b9a7a9b9324eb94bb9bbdc44a4a676 |
|
MD5 | 694672b6f0905deb3cbad405ba454c6a |
|
BLAKE2b-256 | a1c5609a63f32a08751dfa16fc352bc06aaa51fbab74a1515532872efbf64fa3 |
File details
Details for the file flask_behind_proxy-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: flask_behind_proxy-0.1.1-py3-none-any.whl
- Upload date:
- Size: 4.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.0a2 CPython/3.6.7 Linux/4.18.0-15-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a2bb35eb1e0e7f8425c50b8dc7a5139ae41dab49dab9c344a2e1c9dfe31c09a7 |
|
MD5 | 1ae47af17a669a156de8c98868c910c9 |
|
BLAKE2b-256 | 0ce6f6e97c5ee4b308ca59ea4322915bebd0efa9fb2972d27347e204d70825f2 |