Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

gitlab - icons replaced by rectangles

Tags:

gitlab

I recently installed gitlab and it seems that all of the icons are replaced by rectangles. Everything else seems to be working correctly.

gitlab-boxes

Any idea what could be causing this?

edit: on another computer I seem to get Korean characters instead of the boxes. So obviously the boxes were the lack of that character set. gitlab-characters

like image 947
pdexter Avatar asked Sep 11 '26 20:09

pdexter


1 Answers

This is usually resolved with:

rake assets:precompile RAILS_ENV=production

If you have a custom root in your GitLab url (that is, if GitLab is accessible through http://myserver/aroot/... instead of just http://myserver/), then some url rewriting can help (as proposed in this issue)

RewriteEngine on
RewriteRule ^(.*)/gitlab/(.*) http://xxx.xxx.xx/$2

For Apache configure, the issue 50 has the latest up-to-date content.

like image 165
VonC Avatar answered Sep 15 '26 03:09

VonC