I have a simple Rails application deployed on a Heroku cedar stack.
The app uses Resque and the Resque Sinatra app for the frontend, so I can track the queue:
# routes.rb ... mount Resque::Server, :at => "/resque"
This works fine, but when deploying to Heroku Resque front-end CSS and JavaScript are not supported .
An excerpt from Heroku logs indicates that it returns null bytes:
... 2011-07-13T16:19:35+00:00 heroku[router]: GET myapp.herokuapp.com/resque/style.css dyno=web.1 queue=0 wait=0ms service=3ms status=200 bytes=0 2011-07-13T16:19:35+00:00 app[web.1]: 2011-07-13T16:19:35+00:00 app[web.1]: 2011-07-13T16:19:35+00:00 app[web.1]: Started GET "/resque/style.css" for 87.xx.xx.xx at 2011-07-13 16:19:35 +0000 2011-07-13T16:19:35+00:00 app[web.1]: cache: [GET /resque/style.css] miss
How can I get him to service these assets?
zefer source share