Git over ngrok tunnel forwarding

…衆ロ難τιáo~ 提交于 2019-12-21 02:14:05

问题


I have a git repo on my local instance. I want to access this from outside my home network. Should I create a git server and ssh server on my local instance for this? Also what is the port I should tunnel using ngrok.

Any inputs are greatly appreciated.


回答1:


As illustrated in issue 193 or issue 145, and ngrok usage, you can directly expose your ssh port (22), with authencation (authtoken).

First, you need register a ngrok account, go to the dashboard will get a token, then execute command like this in you linux server

./ngrok -authtoken as80YQhzsxIIMkMFF8gI -proto=tcp 22

In that case, no git server would be needed, you could clone directly your repo with:

git clone ssh://user@ip.of.local.host:/path/to/repo.git

('repo.git' because you should use a bare repo to push back to)

The only git "server" which comes with git is the git daemon (nothing to do with ssh)

You would use ngrok to redirect http only if you had an http server in front of your Git, using the smart http protocol.
In that case, you could configure Apache to call git-http-backend.



来源:https://stackoverflow.com/questions/27929293/git-over-ngrok-tunnel-forwarding

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!