參考文章:
gitlab安裝完成後,輸入後介面中可以顯示出gitlab的字樣,但是卻無法顯示css樣式,開啟chrome的web控制台,發現出現無法load /asserts/路徑下的css樣式文件,在網上查閱資料,可能跟配置有關,根據參考文章中的描述,找到」production.rb"文件進行修改
sudo vim /opt/gitlab/embedded/service/gitlab-rails/config/enviroments/production.rb
if gitlab.rails5?
config.public_file_server.enaled = false
else
config.serve_static_file = false
end
修改為
if gitlab.rails5?
config.public_file_server.enaled = true
else
config.serve_static_file = true
end
修改完成後,使用命令進行重新配置
sudo gitlab-ctr reconfigure
sudo gitlab-ctr restart
完成後發現瀏覽器的樣式已經新增上了,據說是使用了不同的server的問題,具體原因尚未定位到,待解決!!!!!! GitLab安裝和使用
pre 在centos7下安裝gitlab之前,最好修改本地centos的yum源為阿里的,參見第 四 修改centos的yum源部分。直接vim etc yum.repos.d gitlab ce.repo,內容為 gitlab ce name gitlab ce repository baseu...
gitlab安裝及使用
一 安裝gitlab 1 配置yum源 vim etc yum.repos.d gitlab ce.repo複製以下內容 gitlab ce name gitlab ce repository baseurl gpgcheck 0 enabled 1 2 更新本地yum快取 3 安裝gitlab社群...
Gitlab漢化安裝使用
是上一片,我已經介紹了,如何安裝gitlab 這篇文章講解一下如何安裝使用漢化gitlab 安裝漢化前,先要檢視gitlab對應的版本,漢化版本要與gitlab版本相對應。cat opt gitlab embedded service gitlab rails version這裡是最新版的11.8....