Proxy server

Build simple proxy server in Python

for understanding how proxy server works.

Donald Le
Oct 22, 2020

--

There are reverse proxy and forward proxy. Reverse proxy handle the request coming to your server, manipulate it and then send to your server. Forward proxy, handle the request you sent from your side to the target site, manipulate it. In short, proxy work as the middle man.

In this post we will implement forward proxy.

The code:

--

--

Donald Le

A passionate automation engineer who strongly believes in “A man can do anything he wants if he puts in the work”.