Address lint

This commit is contained in:
beth 2020-01-20 13:47:14 -05:00
parent d573d4e5d7
commit f5b76d6230
1 changed files with 2 additions and 2 deletions

View File

@ -13,11 +13,11 @@ app = Flask("proxapp")
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.