Nginx 位置重定向不正确

Nginx 位置重定向不正确

我的nginx.conf:

http {
  include mime.types;

  default_type application/octet-stream;

  # click tracking!
  access_log /var/log/nginx/nginx.access.log combined;

  sendfile on;

  tcp_nopush on; # off may be better for *some* Comet/long-poll stuff
  tcp_nodelay off; # on may be better for some Comet/long-poll stuff

  gzip on;
  gzip_http_version 1.0;
  gzip_proxied any;
  gzip_min_length 500;
  gzip_disable "MSIE [1-6]\.";

  include /etc/nginx/sites-enabled/*;



  upstream nvhbase {
    server unix:///tmp/nvhbase.sock fail_timeout=0;
  }

  upstream tracker {
    server unix:///tmp/tracker.sock fail_timeout=0;
  }

  server {

    listen 80;
    server_name hmaapp101;

    # Application root, as defined previously
    #root /var/www/nvh/public;
    #try_files $uri/index.html $uri.html $uri;
    location / {
        root /var/www/nvh/public;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header Host $http_host;
        proxy_redirect off;
        proxy_pass http://unix:///tmp/nvhbase.sock;
    }

    location ^~ /tracker/ {
        root /var/www/tracker/public;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header Host $http_host;
        proxy_redirect off;
        proxy_pass http://unix:///tmp/tracker.sock:/tracker/;
    }
  }
}

当我访问 时,http://myapp/tracker我被重定向到myapp/tracker/tracker/users/sign_in而不是myapp/tracker/users/sign_in

我已经尝试了一百万种变化,但要么得到过多的 500 个重定向,要么得到这个。

我摆弄了一些东西,以为我把它改回来了,但现在我把一些东西弄坏了......应该备份。

请帮忙。这样运行两个 Rails 应用程序是不是不好的做法?

答案1

您需要root在块中设置server,而不是在location块中设置。这是最常见的 nginx 错误之一。

location您需要覆盖文档根目录的地方,使用alias而不是root,以便正确转换路径。

相关内容