Fixes issue where 307 redirects on http not https

Added proxyfix to honor the X-Forwarded-Proto header

Fixed #730
This commit is contained in:
Warren Spits 2022-04-22 17:24:03 +10:00
parent b2c524bc3e
commit ee952a7587

View File

@ -13,9 +13,13 @@ from stem import Signal
import threading
from dotenv import load_dotenv
from werkzeug.middleware.proxy_fix import ProxyFix
app = Flask(__name__, static_folder=os.path.dirname(
os.path.abspath(__file__)) + '/static')
app.wsgi_app = ProxyFix(app.wsgi_app)
# Load .env file if enabled
if os.getenv('WHOOGLE_DOTENV', ''):
dotenv_path = '../whoogle.env'