我对sidekiq显示器有问题 - 在开发中它工作正常但在生产中它没有任何CSS工作只显示纯网页而没有静止在int!有没有人知道如何解决它!!!!
我正在使用这个版本 https://github.com/mperham/sidekiq/wiki/Monitoring
答案 0 :(得分:4)
通过将gem资产链接到公共文件夹,这对我有用:
ln -svf /home/deploy/my_app/shared/bundle/ruby/2.1.0/gems/sidekiq-4.0.1/web/assets /home/deploy/my_app/current/public/sidekiq
答案 1 :(得分:2)
它的解决方案是/config/environments/production.rb
改为:
config.action_dispatch.x_sendfile_header = "X-Sendfile"
为:
config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect'
找到了它
here