Battlegrounds Mobile India Download Link for PC: How to download and play BGMI on PC/ laptop bgr.in - get the latest breaking news, showbiz & celebrity photos, sport news & rumours, viral videos and top stories from bgr.in Daily Mail and Mail on Sunday newspapers.
I do all of my development remotely via ssh and local forwards
I do a little with SSH tunnels, but not much. Do you mean you have it set up so that on your Mac you can go to localhost:8080 (or whatever) in your browser and it will actually go to the remote machine? Yes, just set up a localforward in your .ssh/config like this: Host dev HostName ip of dev box User my username ForwardAgent yes AddKeysToAgent yes IdentityFile ~/.ssh/id m1 air LocalForward 8443 localhost:8443 LocalForward 8080 localhost:8080 LocalForward 8065 localhost:8065 LocalForward 3000 localhost:3000 .
Those line s effectively mean forward my local port 8443 to the remote host s 8443. The local port + remote port (and even the remote host) don t need to be the same.