Reverse-Proxy is a "mini"-server that serves as a transit station between the real server and the client. But the "problem", is it's different physical servers / IPs.
I want to do a different thing - Reverse-Proxy in the "Port-Level".
That mean that I want to take the actual software that listen to port 80, and force it to listen to port 5284 (for example, in the picture). Than, I want to take the proxy and connect it to port 80 and to the actual software.
How do I do it (in Python)? The closest thing I found is Port-Forwarding (it's not the same thing as I understood).
We want to implement our own thing, not to use external stuff like nginx.
