Is it possible to disable nginx\'s custom error pages - if I may call them that - to display my framework\'s exception pages?
I can\'t really see my werkzeug debugge
Use Flask#errorhandler to register your own error handlers in flask. For example to replace the 404 you would do something like:
app = Flask() @app.errorhandler(404) def handel_404(error): return render_template('404.html')