我已经设置了一个主机名为“localhost”的本地gitorious服务器。 但它给了我一个http网址,如
http://git.localhost/abc/abc.git
所以我无法通过http访问。 实际上,我想用IP地址替换“localhost”。 但是“git”。部分导致问题。
如何解决问题才能通过http访问?
答案 0 :(得分:1)
将以下行添加到/etc/hosts
:
git.<youhost> <machine-ip>
这是识别http / https请求的功能。您还可以使用自我诊断脚本来检查某些错误。
$ sudo su git -c "RAILS_ENV=production bundle exec rake diagnostics:summary"