aboutsummaryrefslogtreecommitdiffstats
path: root/examples/proxapp.py
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2016-02-15 23:00:11 +0100
committerMaximilian Hils <git@maximilianhils.com>2016-02-15 23:00:11 +0100
commit87d9afcf2e257eee7c5aa08c3f0dc64da79b0647 (patch)
tree71b10729d160f0269d02548d1ef9e183be1397d9 /examples/proxapp.py
parent36f34f701991b5d474c005ec45e3b66e20f326a8 (diff)
parent3d9a5157e77b5a3237dc62994f4e3d4c75c2066e (diff)
downloadmitmproxy-87d9afcf2e257eee7c5aa08c3f0dc64da79b0647.tar.gz
mitmproxy-87d9afcf2e257eee7c5aa08c3f0dc64da79b0647.tar.bz2
mitmproxy-87d9afcf2e257eee7c5aa08c3f0dc64da79b0647.zip
Merge pull request #937 from mhils/single-repo
Combine mitmproxy, pathod and netlib in a single repo.
Diffstat (limited to 'examples/proxapp.py')
-rw-r--r--examples/proxapp.py24
1 files changed, 0 insertions, 24 deletions
diff --git a/examples/proxapp.py b/examples/proxapp.py
deleted file mode 100644
index 4d8e7b58..00000000
--- a/examples/proxapp.py
+++ /dev/null
@@ -1,24 +0,0 @@
-"""
-This example shows how to graft a WSGI app onto mitmproxy. In this
-instance, we're using the Flask framework (http://flask.pocoo.org/) to expose
-a single simplest-possible page.
-"""
-from flask import Flask
-
-app = Flask("proxapp")
-
-
-@app.route('/')
-def hello_world():
- return 'Hello World!'
-
-
-# Register the app using the magic domain "proxapp" on port 80. Requests to
-# this domain and port combination will now be routed to the WSGI app instance.
-def start(context, argv):
- context.app_registry.add(app, "proxapp", 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.
- context.app_registry.add(app, "example.com", 443)