一个可配置的多端口反向代理套件,基于 mitmproxy/mitmweb。为后端/API/AI 开发者提供“端口观察哨”,可视化请求/响应、Header、时间线。
proxies.json),自动生成并启动多个容器SSLKEYLOGFILE 配合 Wireshark 解密 TLS快速开始(单容器):
docker run -p 8080:48080 -p 8081:48081 \
-e MITM_REVERSE_TARGET=http://host.docker.internal:11434 \
-e MITM_WEB_PASSWORD=yourpass \
luckybill/multi-mitmproxy-service:latest
多服务(配合生成器):
export IMAGE_REPO=luckybill/multi-mitmproxy-service
make up
典型场景:Ollama 11434 调试
{
"proxies": [
{ "name": "ollama", "target": "http://host.docker.internal:11434", "host_proxy_port": 48084, "host_web_port": 48085 }
]
}
访问:http://localhost:48084/ 与 http://localhost:48085/?token=<password>
链接:
A configurable multi-port reverse proxy suite built on mitmproxy/mitmweb. It gives API/AI/backend developers a “port observatory” to visualize requests/responses, headers, and timelines.
proxies.json, auto-generate and run multiple servicesSSLKEYLOGFILE for TLS decryption with WiresharkQuick Start (single container):
docker run -p 8080:48080 -p 8081:48081 \
-e MITM_REVERSE_TARGET=http://host.docker.internal:11434 \
-e MITM_WEB_PASSWORD=yourpass \
luckybill/multi-mitmproxy-service:latest
Multiple services (with generator):
export IMAGE_REPO=luckybill/multi-mitmproxy-service
make up
Typical use case: debugging Ollama 11434
{
"proxies": [
{ "name": "ollama", "target": "http://host.docker.internal:11434", "host_proxy_port": 48084, "host_web_port": 48085 }
]
}
Access: http://localhost:48084/ and http://localhost:48085/?token=<password>
Links:
Content type
Image
Digest
sha256:22b9e9a65…
Size
99.1 MB
Last updated
7 months ago
docker pull luckybill/multi-mitmproxy-service