You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ext_proxy_fix.py 244B

12345678910
  1. from flask import Flask
  2. from configs import dify_config
  3. def init_app(app: Flask):
  4. if dify_config.RESPECT_XFORWARD_HEADERS_ENABLED:
  5. from werkzeug.middleware.proxy_fix import ProxyFix
  6. app.wsgi_app = ProxyFix(app.wsgi_app)