ruby-on-rails – rails – nginx puma – 静态资产不是由提供的教程链接中的nginx提供的

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – rails – nginx puma – 静态资产不是由提供的教程链接中的nginx提供的前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在使用Ubuntu.
这是tutorial

我正在使用的Nginx配置:

  1. upstream my_app {
  2. server unix:///home/uname/railsproject/my_app.sock;
  3. }
  4. server {
  5. listen 88; #(I used exact 88 when I am testing now)
  6. server_name localhost; # I used exact localhost when I am testing this
  7. root /home/uname/railsproject/public; # I assume your app is located at that location
  8. location / {
  9. proxy_pass http://my_app; # match the name of upstream directive which is defined above
  10. proxy_set_header Host $host;
  11. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  12. }
  13. location ~* ^/assets/ {
  14. # Per RFC2616 - 1 year maximum expiry
  15. expires 1y;
  16. add_header Cache-Control public;
  17. # Some browsers still send conditional-GET requests if there's a
  18. # Last-Modified header or an ETag header even if they haven't
  19. # reached the expiry date sent in the Expires header.
  20. add_header Last-Modified "";
  21. add_header ETag "";
  22. break;
  23. }

}

彪马命令

  1. RAILS_ENV=production puma -e production -b unix:///home/uname/railsproject/my_app.sock -p 8000

在地址栏中,我正在打字

  1. http://localhost/

然后网站开放但静态资产不起作用.当然,我跑了

  1. RAILS_ENV=production rake assets:precompile

和资产在公共/资产文件夹中可用
我还尝试将m.txt文件放在assets目录中并进行访问

  1. http://localhost/assets/m.txt

但没有奏效.我也试过这个命令:

  1. sudo chown -R www-data:www-data public/

但这没有帮助.

最佳答案
我有类似的问题.我从irc上非常有用的#Nginx频道得到了答案.他们说这是“惯用的Nginx”,而另一种形式,虽然更受欢迎,但是气馁:

  1. server {
  2. server_name server.com;
  3. # path for static files
  4. root /home/production/server.com/current/public;
  5. location / {
  6. try_files $uri @proxy;
  7. # if url path access by directory name is wanted:
  8. #try_files $uri $uri/ @proxy;
  9. }
  10. location @proxy {
  11. proxy_pass http://localhost:9292;
  12. proxy_set_header Host $host;
  13. proxy_set_header X-Real-IP $remote_addr;
  14. }
  15. }

/ hattip:vandemar

猜你在找的Nginx相关文章