Skip to content

Commit d9a2a17

Browse files
committedFeb 14, 2012
Add simple README
1 parent 0c3a0da commit d9a2a17

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
 

‎README.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Transparent HTTP proxy
2+
======================
3+
4+
A basic transparent HTTP proxy that can sit between a client and HTTP servers,
5+
proxying requests from the client and rewriting the returned resource.
6+
7+
Much inspiration taken from
8+
[sergio-proxy](https://code.google.com/p/sergio-proxy/).
9+
10+
It is enabled on the gateway (in my case for a single client) by a simple
11+
iptables rule:
12+
13+
iptables -t nat -A PREROUTING -s $CLIENT_IP -p tcp --dport 80 -j REDIRECT --to-port 8080

0 commit comments

Comments
 (0)
Please sign in to comment.