ssh -R 2401:localhost:2401 user@myServer.comThis does an ssh login to my external server ( which I will call myServer.com ) and sets up a reverse tunnel. Then, I can check out my app from my intranet server through the reverse tunnel from my ssh session on my external server. Which I did as follows:
227 cd /usr/local/share
232 sudo mkdir myApp
234 cd myApp
236 sudo cvs -d :pserver:user@localhost:/var/cvsroot login
237 sudo cvs -d :pserver:user@localhost:/var/cvsroot co myApp
241 sudo cvs -d :pserver:user@localhost:/var/cvsroot up -dIn the future, I just have to do like line 241 to update my app.
Next, setting up apache and my certificates.
No comments:
Post a Comment