Add proxyfix to honor `X-Forwarded-Proto` header (#731)

Fixes #730
pull/736/head
Warren Spits 2 years ago committed by GitHub
parent b2c524bc3e
commit d62ceb8423
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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'

Loading…
Cancel
Save