Archive
Posts Tagged ‘client IP’
Heroku: strange client IP addresses
November 3, 2013
Leave a comment
Problem
In Flask, you can ask the client’s IP address with request.remote_addr
. If you try to print this value on Heroku, you will get strange IP addresses that have nothing to do with the client’s IP.
Why?
It’s because your app. at Heroku is behind proxies and your app. will see the proxies’ IP, not the real client’s IP.
Fortunately there is a fix for this problem here: http://flask.pocoo.org/docs/deploying/others/#proxy-setups. You just need to insert these two lines in the production code:
from werkzeug.contrib.fixers import ProxyFix app.wsgi_app = ProxyFix(app.wsgi_app)
Advertisements
Categories: python
client IP, heroku, proxy, remote_addr