Rails 4: assets not loading in production

前端 未结 18 1454
梦如初夏
梦如初夏 2020-11-29 15:15

I\'m trying to put my app into production and image and css asset paths aren\'t working.

Here\'s what I\'m currently doing:

  • Image assets live in /app/a
18条回答
  •  余生分开走
    2020-11-29 16:17

    location ~ ^/assets/ {
      expires 1y;
      add_header Cache-Control public;
      add_header ETag "";
    }
    

    This fixed the problem for me in production. Put it into the nginx config.

提交回复
热议问题