Skip to content

Commit

Permalink
Address lint
Browse files Browse the repository at this point in the history
  • Loading branch information
beth committed Jan 20, 2020
1 parent d573d4e commit f5b76d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/simple/wsgi_flask_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
def hello_world() -> str:
return 'Hello World!'


addons = [
# 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.
wsgiapp.WSGIApp(app, "proxapp.local", 80)

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)
# but won't send any data.
Expand Down

0 comments on commit f5b76d6

Please sign in to comment.