Nginx没有从配置中检测Rails 3.2应用程序的根位置



这是运行在ubuntu 12.04上的nginx服务器的error.log。

2014/03/17 12:47:17 [error] 7939#0: *1 open() "/opt/nginx/html/mkl/authentify/signin" failed (2: No such file or directory), client: xxx.xxx.228.66, server: xxx.xxx.109.181, request: "GET /mkl/authentify/signin HTTP/1.1", host: "xxx.xxx.109.181"

在/opt/nginx/conf/nginx.conf中,它的配置如下(配置中唯一的服务器块):

  server {
    listen 80;
    server_name xxx.xxx.109.181;
    root /ebs/www/;
    passenger_enabled on;
    rails_env production;
    passenger_base_uri /mkl;
    .....
  }

nginx服务器的根目录指向/ebs/www/。然而,nginx正在访问/opt/nginx并抛出没有这样的文件错误。是什么导致了这个问题?谢谢。

gem passenger安装完成后,nginx又安装了passenger-install-nginx-module

正确的根是你应用程序中的公共顺序:

server {
  listen 80;
  server_name xxx.xxx.109.181;
  root /ebs/www/YOUR_APPLICATION/current/public;
  # e.g. root /var/www/vhosts/example.com/httpdocs/example/current/public;
  passenger_enabled on;
  rails_env production;
  passenger_base_uri /mkl;
  .....
}

在nginx.conf中第一个(唯一)服务器块之后添加一个服务器{}块后,问题已修复。在以前的版本(可能是1.4.x)中,nginx.conf中有2个服务器块。在当前版本中,只有一个服务器{}块。

更多关于解决方案的阅读可以在为什么nginx响应任何域名?,https://serverfault.com/questions/416064/rails-application-only-showing-nginx-default-page

相关内容

  • 没有找到相关文章