Skip to content

Latest commit

 

History

History
30 lines (17 loc) · 944 Bytes

README.md

File metadata and controls

30 lines (17 loc) · 944 Bytes

Inspecting Reverse Proxy Components in Twisted

StreamProx is a little toolkit for building server proxies in Twisted. A server proxy (reverse proxy) is a piece of software that accepts an incoming connection, examines the traffic on it and makes a decision about where to route it. The inspecting server proxy buffers the first few packets of the connection to help it make its decision. It then initiates the proxied connection and forwards the buffered packets.

StreamProx lets you organize a website as a collection of Protocol and Client handlers, some of which are local, and some of which may be remote.

Getting Started

  • Read a short introduction to what StreamProx can do in doc/introduction.md.

  • Read about the example programs in demo/README.md.

Related