We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c3a0da commit d9a2a17Copy full SHA for d9a2a17
README.md
@@ -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