Replace werkzeug.contrib with werkzeug.middleware proxyfix.

werkzeug.contrib has been deprecated, this is the new location
of the proxyfix.
master
voussoir 2020-05-17 16:33:40 -07:00
parent 363d0bac67
commit 88a6708061
1 changed files with 2 additions and 2 deletions

View File

@ -4,10 +4,10 @@ This file is the WSGI entrypoint for remote / production use.
If you are using Gunicorn, for example: If you are using Gunicorn, for example:
gunicorn etiquette_flask_entrypoint:site --bind "0.0.0.0:PORT" --access-logfile "-" gunicorn etiquette_flask_entrypoint:site --bind "0.0.0.0:PORT" --access-logfile "-"
''' '''
import werkzeug.contrib.fixers import werkzeug.middleware.proxy_fix
import backend import backend
backend.site.wsgi_app = werkzeug.contrib.fixers.ProxyFix(backend.site.wsgi_app) backend.site.wsgi_app = werkzeug.middleware.proxy_fix.ProxyFix(backend.site.wsgi_app)
site = backend.site site = backend.site