歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux基礎 >> Linux教程 >> 自定義的GitLab 頭像無法正常顯示以及URL總是指向localhost

自定義的GitLab 頭像無法正常顯示以及URL總是指向localhost

日期:2017/2/28 13:50:19   编辑:Linux教程

自定義的GitLab 頭像無法正常顯示以及URL總是指向localhost

解決指向localhost的問題:

編輯gitlab的配置vi /etc/gitlab/gitlab.rb,修改external_url 參數值

[Mesogene@localhost ~]$ sudo vi /etc/gitlab/gitlab.rb
## Url on which GitLab will be reachable.
## For more details on configuring external_url see:
## https://gitlab.com/gitlab-org/omnibus-gitlab/blob/629def0a7a26e7c2326566f0758d4a27857b52a3/README.md#configuring-the-external-url-for-gitlab
#external_url 'http://localhost'    #注釋掉,將localhost修改為你對應的iP或者域名
external_url 'http://10.10.10.152'

頭像顯示問題:

[Mesogene@localhost ~]$ sudo vi /etc/gitlab/gitlab.rb    #把下面這一行的注釋去掉即可
gitlab_rails['gravatar_plain_url'] = 'http://www.gravatar.com/avatar/%{hash}?s=%{size}&d=identicon'

[Mesogene@localhost ~]$ sudo gitlab-ctl reconfigure
[Mesogene@localhost ~]$ sudo gitlab-rake cache:clear RAILS_ENV=production

如圖:

Copyright © Linux教程網 All Rights Reserved