How to setup Proxy Server For HTTP Request on Cloud

Solution 1:

Nginx is the standard solution for reverse proxying.

https://docs.nginx.com/nginx/admin-guide/web-server/reverse-proxy/

location /some/path/ {
    proxy_pass http://www.example.com/link/;
}

It's that simple.