Firefox does not find the favicon of my Rails 3.1 app in production mode. Running in development mode, it works.
I browse to the URL localhost:4000/favicon_standing.ico
for both modes.
The favicon is located in my public folder of my app. I do not use the asset pipeline for it.
I start the server using rails s -p 4000 -e production
and rails s -p 4000
, respectively, using WEBrick.
Why does is for in development mode, but not in production mode?