aboutsummaryrefslogtreecommitdiffstats
path: root/docs/src/content/howto-transparent.md
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #3603 from tomsaleeba/patch-1Thomas Kriechbaumer2019-09-281-0/+25
|\ | | | | Transparent proxy on Linux for local originating traffic
| * docs: correct command to install mitmproxyTom Saleeba2019-08-011-1/+3
| |
| * docs: add instructions for transparent proxy on Linux for traffic ↵Tom Saleeba2019-08-011-0/+23
| | | | | | | | originating from the mitmproxy host itself
* | fix pf.conf on macOSking6cong2019-07-301-11/+5
|/
* Minor fix re. macOS stepsLucio Paiva2019-06-261-2/+2
|
* openbsd: divert-to requires exact listen addressJihyun Yu2019-01-181-1/+1
| | | | | divert-to does not work with '0.0.0.0' or similar listen address, so we need to specify listen address that we provided to `pf`.
* Update howto-transparent.mdbunnyhero2018-07-051-3/+3
| | | | | i got a syntax error on macOS high sierra with the existing example pf.conf line. based on sample pf rules i found online, i believe it was missing the `pass` keyword, which i added. also, the surrounding text refers to "two lines," when there is only one, so i've updated that too.
* Merge pull request #2986 from miheerdew/patch-1Thomas Kriechbaumer2018-05-061-2/+36
|\ | | | | Workaround for MacOS transparent proxy
| * Merge masterMiheer Dewaskar2018-03-241-84/+77
| |\
| * | SpellingMiheer Dewaskar2018-03-111-2/+2
| | |
| * | Extrac comment and typoMiheer Dewaskar2018-03-111-1/+2
| | |
| * | Workaround for MacOS transparent proxyMiheer Dewaskar2018-03-111-2/+37
| | | | | | | | | This workaround (adopted from #1261) allows MacOS users to redirect their machine's outgoing traffic to mitmproxy transparently.
* | | Fixed Typo in Transparent Proxy Setup for MacMichael Shi2018-03-261-1/+1
| |/ |/| | | Fixed typo referencing `en2` when it should mention `en0`
* | improve transparent mode docsMaximilian Hils2018-03-201-80/+75
|/
* few more fixes,picture modkira02042018-02-251-7/+7
|
* All new documentationAldo Cortesi2018-02-221-0/+269
This patch does a lot. - Ditch sphinx in favor of hugo. This gives us complete control of the layout and presentation of our docs. Henceforth, docs will be hosted on our website rather than ReadTheDocs. - Create a simple, clean doc layout and theme. - Remove large parts of the documentaion. I've ditched anything that was a) woefully out of date, b) too detailed, or c) too hard to maintain in the long term. - Huge updates to the docs themselves: completely rewrite addons documentation, add docs for core concepts like commands and options, and revise and tweak a lot of the existing docs. With this patch, we're also changing the way we publish and maintain the docs. From now on, we don't publish docs for every release. Instead, the website will contain ONE set of docs for each major release. The online docs will be updated if needed as minor releases are made. Docs are free to improve during minor releases, but anything that changes behaviour sufficiently to require a doc change warrants a new major release. This also leaves us free to progressively update and improve docs out of step with our release cadence. With this new scheme, I feel CI over the docs is less important. I've removed it for now, but won't object if someone wants to add it back in.