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
Comments
Post a Comment