欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Gitlib配置文件里的server.httpBindInterface

程序员文章站 2022-03-03 14:47:12
...

配置文件一般在Gitlib 安装目录下\data\defaults.properties 文件里。

# Specify the interface for Jetty to bind the standard connector.
# You may specify an ip or an empty value to bind to all interfaces.
# Specifying localhost will result in Gitblit ONLY listening to requests to
# localhost.
#
# SINCE 0.5.0
# RESTART REQUIRED
server.httpBindInterface = 

可以看出 这个属性如果设置了,那么请求Gitlib服务的话,如果是http的话,则该值可以作为context 。
该值只能填写 localhost 或者是 ipconfig 得出的ip (为什么我这里需要特别指定ipconfig ,否则启动Gitlib会失败。还有坑点,Gitlib 只认ipconfig 里的 ip 。还有, 有时候ipconfig 得到的有时候是公网,有时候是内网。填写内网的话,用户的机器很大可能是ping不同服务器的内网的,所以也是无法使用Gitlib的。这种情况,其实可以不用设置该属性,直接空着就好了。)

相关标签: 安装