如何让 Gitlab 6.5 在 Apache 2.4 代理下显示其图标?
Posted
技术标签:
【中文标题】如何让 Gitlab 6.5 在 Apache 2.4 代理下显示其图标?【英文标题】:How can I get Gitlab 6.5 to show its icons under a Apache 2.4 proxy? 【发布时间】:2014-03-13 04:26:33 【问题描述】:我无法修复由 Apache 2.4 代理的 Gitlab 上的图标。我的失败可能是因为我没有使用乘客(乘客提供了自己的一组更深层次的问题),但我采取了所有步骤在代理 /gitlab
下运行它。我也跑了:
sudo -u git -H bundle exec rake assets:precompile RAILS_ENV=production RAILS_RELATIVE_URL_ROOT=/gitlab
我也重新启动了 Apache。没有得到改善。图标仍然丢失(或者我应该说字体woff
文件将status 200
返回到浏览器但大小为0)。这是 Gitlab 6.5。在我的 Apache SSL sites-enabled
conf 文件中,这为我们的 Gitlab 提供了通往世界的 SSL 路由:
<Proxy *>
Require all granted
</Proxy>
<Location ~ /(gitlab|assets)>
RequestHeader set X_FORWARDED_PROTO 'https'
SetEnv RAILS_RELATIVE_URL_ROOT "/gitlab"
Require all granted
Options -Multiviews
# apache equivalent of nginx try files
# http://serverfault.com/questions/290784/what-is-apaches-equivalent-of-nginxs-try-files
# https://***.com/questions/10954516/apache2-proxypass-for-rails-app-gitlab
RewriteCond %DOCUMENT_ROOT/%REQUEST_FILENAME !-f
RewriteRule .* http://127.0.0.1:8085/%REQUEST_URI [P,QSA]
# needed for downloading attachments but does not work under Location directive
#DocumentRoot /home/git/gitlab/public
</Location>
ProxyPass /gitlab/ http://127.0.0.1:8085/gitlab/
ProxyPassReverse /gitlab/ http://127.0.0.1:8085/gitlab/
ProxyPass /gitlab http://127.0.0.1:8085/gitlab
ProxyPassReverse /gitlab http://127.0.0.1:8085/gitlab
# SOme of the CSS assets were not being generated with "/gitlab", so I proxy those too.
ProxyPass /assets http://127.0.0.1:8085/gitlab/assets
ProxyPassReverse /assets http://127.0.0.1:8085/gitlab/assets
同样,大部分都可以正常工作。只有字体资源以 0 大小返回给浏览器。我应该将 Location 指令更新为目录吗?
注意:gitlab - icons replaced by rectangles 没有帮助。是的,我的服务器上的 443 端口上还有其他站点,所以如果我不需要,我不能只在它自己的端口/域上使用这个 Apache 配置。我可能只需要一些帮助来理解 Apache 2.4。我的 Apache 配置中是否缺少任何内容?
使用的资源:@987654322@、https://github.com/gitlabhq/gitlabhq/issues/2365、https://github.com/gitlabhq/gitlab-recipes/commit/c6c22b4fb68bbb6efb547cce6605dea4344ba9fe
替换 Location 指令也失败了: 试过这个,但没有那么成功:
Alias ^/(gitlab|assets) /home/git/gitlab/public
<Directory /home/git/gitlab/public>`
RequestHeader set X_FORWARDED_PROTO 'https'
SetEnv RAILS_RELATIVE_URL_ROOT "/gitlab"
Require all granted
Options -Multiviews
# https://***.com/questions/10954516/apache2-proxypass-for-rails-app-gitlab
RewriteCond %DOCUMENT_ROOT/%REQUEST_FILENAME !-f
RewriteRule .* http://127.0.0.1:8085/%REQUEST_URI [P,QSA]
</Directory>
【问题讨论】:
【参考方案1】:这可能对你有帮助,
https://github.com/gitlabhq/gitlabhq/issues/3306#issuecomment-15971720
基本上是说运行rake assets:clean
,然后运行assets:precompile
,然后运行service gitlab restart
我已经预编译了我的资产,检查了 public/assets 文件夹,可以看到它们存在,但有些图标没有显示,所以我清理了它们,再次预编译并重新启动它,然后它们开始出现。
运行
sudo -u git -H bundle exec rake assets:clean RAILS_ENV=production
然后
sudo -u git -H bundle exec rake assets:precompile RAILS_ENV=production RAILS_RELATIVE_URL_ROOT=/gitlab
然后刷新页面,如果它不起作用尝试
sudo service gitlab restart
但是我现在在那里查看了我的历史记录,我看不到自己重新启动它,所以我假设当这种情况发生在我身上时,我只是将它们清理掉并再次预编译它们,而我不必重新启动。
【讨论】:
尝试了上述每个命令并多次重新启动。我在下面的答案中找到了解决方案。【参考方案2】:由于它位于相对根目录下,您仍然需要按照上述说明运行以下命令,以验证资产的正确映射(包括图标和 CSS URL):
sudo -u git -H bundle exec rake assets:precompile RAILS_ENV=production RAILS_RELATIVE_URL_ROOT=/gitlab
对于非相对 URL 用户,请省略额外的相对 URL 部分
sudo -u git -H bundle exec rake assets:precompile RAILS_ENV=production
您也可以按照@LpLrich 的说明重新启动:
sudo service gitlab restart
对于一些较旧的 Linux 设置,请改用:
sudo /etc/init.d/gitlab restart
然后刷新你的浏览器。
然而,以上步骤都没有在我的系统上运行,因为,尽我所能,我在下面修复的不完善的 Apache 设置 - 包括它以防你发现正确修复 Gitlab 但找到最终结果的相同问题在浏览器中失败。我确实更改为不再使用相对 URL 根,但这并不重要。一旦 gitlab 步骤完成,这也应该有助于 Apache 解决上述问题。抱歉,ProxyPassReverse 是您需要从问题的 Apache 设置中注意的主要更改:
<IfModule mod_ssl.c>
<VirtualHost *:443>
Servername gitlab.my_domain.com
ServerAdmin my_admin@my_domain.com
SSLCertificateFile /etc/apache2/ssl.crt/gitlab_my_domain.crt
SSLCertificateKeyFile /etc/apache2/ssl.crt/gitlab_my_domain_private.key
SSLCACertificateFile /etc/apache2/ssl.crt/gitlab.ca-bundle
##### All the other Apache SSL setup skipped here for *** ####
ProxyPreserveHost On
<Location />
# New authorization commands for apache 2.4 and up
# http://httpd.apache.org/docs/2.4/upgrading.html#access
Require all granted
# For relative URL root "host:your_gitlab_port/relative_root"
#ProxyPassReverse http://127.0.0.1:8080/gitlab
#ProxyPassReverse https://gitlab.my_domain.com/gitlab
# For non-relative URL root
ProxyPassReverse http://127.0.0.1:8080
ProxyPassReverse https://gitlab.my_domain.com/
</Location>
# apache equivalent of nginx try files
# http://serverfault.com/questions/290784/what-is-apaches-equivalent-of-nginxs-try-files
# http://***.com/questions/10954516/apache2-proxypass-for-rails-app-gitlab
RewriteEngine on
RewriteCond %DOCUMENT_ROOT/%REQUEST_FILENAME !-f
RewriteRule .* http://127.0.0.1:8080%REQUEST_URI [P,QSA]
RequestHeader set X_FORWARDED_PROTO 'https'
# needed for downloading attachments
DocumentRoot /home/git/gitlab/public
#Set up apache error documents, if back end goes down (i.e. 503 error) then a maintenance/deploy page is thrown up.
ErrorDocument 404 /404.html
ErrorDocument 422 /422.html
ErrorDocument 500 /500.html
ErrorDocument 503 /deploy.html
LogFormat "%X-Forwarded-Fori %l %u %t \"%r\" %>s %b" common_forwarded
ErrorLog /var/log/apache2/gitlab-ssl_error.log
CustomLog /var/log/apache2/gitlab-ssl_forwarded.log common_forwarded
CustomLog /var/log/apache2/gitlab-ssl_access.log combined env=!dontlog
CustomLog /var/log/apache2/gitlab-ssl.log combined
</VirtualHost>
</IfModule>
(来自https://github.com/gitlabhq/gitlab-recipes/blob/master/web-server/apache/gitlab-ssl-apache2.4.conf)
【讨论】:
我现在在 Gitlab 6.6.5 上进行修复。以上是关于如何让 Gitlab 6.5 在 Apache 2.4 代理下显示其图标?的主要内容,如果未能解决你的问题,请参考以下文章
GitLabCentOS 6.5 安装GitLab 搭建自己的Github
centos 6.5 上 Apache 2.2.15 上的 Django
如何将 robots.txt 与 gitlab 和 apache + 子域一起使用?