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 276B

123456789
  1. from configs import dify_config
  2. from dify_app import DifyApp
  3. def init_app(app: DifyApp):
  4. if dify_config.RESPECT_XFORWARD_HEADERS_ENABLED:
  5. from werkzeug.middleware.proxy_fix import ProxyFix
  6. app.wsgi_app = ProxyFix(app.wsgi_app, x_port=1) # type: ignore