node.js - is nginx or haproxy able to do proxy stuff to google.com? -


hi country blocked google.com anyway have virtual machine outside country , have access google. has nginx & haproxy installed, based on limited understanding these reverse proxy can proxy internal servers there anyway let them proxy google.com directly?

thanks much.

instead of using nginx or haproxy proxy url or google.com should use vm proxy browser. execute below on machine

$ ssh -d 8123 -f -c -q -n sammy@example.com 

explanation of arguments

-d: tells ssh want socks tunnel on specified port number (you can choose number between 1025-65536) -f: forks process background -c: compresses data before sending -q: uses quiet mode -n: tells ssh no command sent once tunnel 

this open socks proxy on 127.0.0.1:8123, can set in browser , open google through server.

for more detailed article refer below

https://www.digitalocean.com/community/tutorials/how-to-route-web-traffic-securely-without-a-vpn-using-a-socks-tunnel


Comments

Popular posts from this blog

ubuntu - PHP script to find files of certain extensions in a directory, returns populated array when run in browser, but empty array when run from terminal -

php - How can i create a user dashboard -

javascript - How to detect toggling of the fullscreen-toolbar in jQuery Mobile? -