I have a local web server which has only outgoing internet access. I have a public server on the cloud, which cannot access my local web server directly.
I want to find a way to have my local web server connected to the public server, and for the public server to act as a reverse proxy to forward web request to my local web server, and return the response to the public server.
I have been looking at node-http-proxy to try use a public server to forward http request to another local web server which has no incoming ports opened. But it seems that node-http-proxy assumes that the reverse proxy server has access to the local network.
Is there any solution out there?
Thanks.