Add logo / banner to redmine

  1. Edit your base.html.erb file, add pic above redmine title
    1
    2
    3
    vim {$redmine-root}/app/views/layouts/base.html.erb
    <img src="<%= Redmine::Utils.relative_url_root %>/images/logoscts.png" style="margin-top: 15px; margin-left: 15px;"/> #line to add
    <h1><%= page_header_title %></h1> #redmine original line
  2. upload you logo / banner pic to the directory, my prefernce is using FileZilla
    1
    {$redmine-root}/public/images
    I forgot to “chown the uploaded” pic, but it still works.
  3. restart your redmine daemon, which I made it as a service
    1
    sudo service redmined restart
  4. check your redmine via browser, it’s done.

Reference from:

HowTo add a logo to your Redmine banner.