diff options
Diffstat (limited to 'examples/simple/wsgi_flask_app.py')
-rw-r--r-- | examples/simple/wsgi_flask_app.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/simple/wsgi_flask_app.py b/examples/simple/wsgi_flask_app.py index db3b1adf..4be38000 100644 --- a/examples/simple/wsgi_flask_app.py +++ b/examples/simple/wsgi_flask_app.py @@ -10,14 +10,14 @@ app = Flask("proxapp") @app.route('/') -def hello_world(): +def hello_world() -> str: return 'Hello World!' -def start(opts): - # Host app at the magic domain "proxapp" on port 80. Requests to this +def load(l): + # Host app at the magic domain "proxapp.local" on port 80. Requests to this # domain and port combination will now be routed to the WSGI app instance. - return wsgiapp.WSGIApp(app, "proxapp", 80) + return wsgiapp.WSGIApp(app, "proxapp.local", 80) # SSL works too, but the magic domain needs to be resolvable from the mitmproxy machine due to mitmproxy's design. # mitmproxy will connect to said domain and use serve its certificate (unless --no-upstream-cert is set) |