From 31ee4607c892f85c5d139e54acbc3ca4f9fb6bcb Mon Sep 17 00:00:00 2001 From: Maximilian Hils Date: Mon, 7 Sep 2015 10:30:40 +0200 Subject: remove old docs --- doc-src/config.html | 86 ----------------------------------------------------- 1 file changed, 86 deletions(-) delete mode 100644 doc-src/config.html (limited to 'doc-src/config.html') diff --git a/doc-src/config.html b/doc-src/config.html deleted file mode 100644 index 46688575..00000000 --- a/doc-src/config.html +++ /dev/null @@ -1,86 +0,0 @@ - - -Mitmproxy is configured through a set of files in the users ~/.mitmproxy -directory. - - - - - - - - - - - - - - - - - -
mitmproxy.confSettings for the mitmproxy. This file can contain any options supported by mitmproxy.
mitmdump.confSettings for the mitmdump. This file can contain any options supported by mitmdump.
common.confSettings shared between all command-line tools. Settings in - this file are over-ridden by those in the tool-specific - files. Only options shared by mitmproxy and mitmdump should be used in this file.
- -# Syntax - -## Comments - -
-# this is a comment
-; this is also a comment (.ini style)
---- and this is a comment too (yaml style)
-
- -## Key/Value pairs - -- Keys and values are case-sensitive -- Whitespace is ignored -- Lists are comma-delimited, and enclosed in square brackets - -
-name = value   # (.ini style) 
-name: value    # (yaml style)
---name value   # (command-line option style)
-
-fruit = [apple, orange, lemon]
-indexes = [1, 12, 35 , 40]
-
- -## Flags - -These are boolean options that take no value but true/false. - -
-name = true    # (.ini style)
-name
---name 	 	   # (command-line option style)
-
- -# Options - -The options available in the config files are precisely those available as -command-line flags, with the key being the option's long name. To get a -complete list of these, use the __--help__ option on each of the tools. Be -careful to only specify common options in the __common.conf__ file - -unsupported options in this file will be detected as an error on startup. - -# Examples - -## common.conf - -Note that __port__ is an option supported by all tools. - -
-port = 8080
-
- - -## mitmproxy.conf - -
-palette = light
-
- - -- cgit v1.2.3