Mitweb inconsistent option: web-iface
See original GitHub issueProblem Description
For mitmweb
, the option is --web-iface
; but for mitmproxy
, the option is --listen-host
.
These two settings are practically the same, since the interface value is actually an IP address.
Coming from Linux, I initially tried setting it to eth0
, but that failed.
Searching for the option in the repository led me to the following command:
docker run --rm -it -p 8080:8080 -p 127.0.0.1:8081:8081 mitmproxy/mitmproxy mitmweb --web-iface 0.0.0.0
Source: https://github.com/mitmproxy/mitmproxy/blob/master/release/docker/README.md#usage
Instead, I think we should change it to --web-host
to match the proxy.
Issue Analytics
- State:
- Created 3 years ago
- Reactions:1
- Comments:6 (4 by maintainers)
Top Results From Across the Web
No results found
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Thanks for pointing this out - I updated the readme now.
The source file was updated, (See: release/docker/README.md); perhaps someone will need to update it manually on Docker Hub.