Incorrect link_to Resque path
Created by: parshikov
In app/views/layouts/admin.html.haml file.
= link_to "Resque", "/info/resque"
The code above doesn't know about the deployment into a sub URI (by this manual).
I have gitlab (under apache2) in www.example.com/gitlab but admin page have Resque link to www.example.com/info/resque instead of www.example.com/gitlab/info/resque
Now file is modified manually and contain the code below as temporary solution but I think it isn't a good way.
= link_to "Resque", "/#{ENV['RAILS_RELATIVE_URL_ROOT']}/info/resque"