I an using url_for to generate redirect url when a user has logged out.
return redirect(url_for('.index', _external=True))
However when I changed the page to a https connection, the url_for still gives me http.
I would like to explicitly ask url_for to add https at the beginning of an url.
Can you point me how to change it? I look at Flask docs, without luck.
Thanks.
httpsis usually handled by the wsgi handler – Jakob Bowyer Feb 11 at 11:00python index.py. So that's Flask's wsgi handler. Check also @leon's answer. – Blazej Kroll Feb 11 at 14:20