aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/cmdline.py
diff options
context:
space:
mode:
authorAldo Cortesi <aldo@nullcube.com>2014-09-14 12:22:28 +1200
committerAldo Cortesi <aldo@nullcube.com>2014-09-14 12:22:28 +1200
commit6812d304a1a1893480360d5439fa09445ad55a2c (patch)
tree11974af622aac86a9adc47474b7d192889847d48 /libmproxy/cmdline.py
parentadfaa1ed5ba07be267a90de8d7efb34613400bf2 (diff)
downloadmitmproxy-6812d304a1a1893480360d5439fa09445ad55a2c.tar.gz
mitmproxy-6812d304a1a1893480360d5439fa09445ad55a2c.tar.bz2
mitmproxy-6812d304a1a1893480360d5439fa09445ad55a2c.zip
Basic web service and options
Diffstat (limited to 'libmproxy/cmdline.py')
-rw-r--r--libmproxy/cmdline.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/libmproxy/cmdline.py b/libmproxy/cmdline.py
index caa3a9c8..a3cf07ef 100644
--- a/libmproxy/cmdline.py
+++ b/libmproxy/cmdline.py
@@ -314,23 +314,23 @@ def common_options(parser):
help="Override the HTTP request form sent upstream by the proxy"
)
- group = parser.add_argument_group("Web App")
+ group = parser.add_argument_group("Onboarding App")
group.add_argument(
"-a",
action="store_false", dest="app", default=True,
- help="Disable the mitmproxy web app."
+ help="Disable the mitmproxy onboarding app."
)
group.add_argument(
"--app-host",
action="store", dest="app_host", default=APP_HOST, metavar="host",
- help="Domain to serve the app from. For transparent mode, use an IP when\
+ help="Domain to serve the onboarding app from. For transparent mode, use an IP when\
a DNS entry for the app domain is not present. Default: %s" % APP_HOST
)
group.add_argument(
"--app-port",
action="store", dest="app_port", default=APP_PORT, type=int, metavar="80",
- help="Port to serve the app from."
+ help="Port to serve the onboarding app from."
)
group = parser.add_argument_group("Client Replay")