为什么这个 Nginx 配置会导致“重写或内部重定向循环”

为什么这个 Nginx 配置会导致“重写或内部重定向循环”

我有以下 Nginx 配置:

server {
  listen   80;
  server_name  mercury;

  access_log  /var/log/nginx/mercury.access.log;
  error_log   /var/log/nginx/mercury.error.log;

  location /static {
    add_header Cache-Control: max-age=31536000;
  }

  location / {
    root   /opt/the-jam/www/dist/;
    try_files $uri /index.html;
    add_header Cache-Control: max-age=60;
  }
}

我有目录结构:

§ tree /opt/the-jam/www/dist
/opt/the-jam/www/dist
├── index.html
└── static
    ├── 3522b60dabd4468d03f8.css
    └── 3522b60dabd4468d03f8.js

我收到了错误:

2015/10/20 14:25:26 [error] 4529#0: *95 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 0.0.0.0, server: the-jam, request: "GET /favicon.ico HTTP/1.1", host: "the-jam.example.com", referrer: "http://the-jam.example.com/"

这是一个单页应用程序,任何请求,即/foo/bar/baz应该只加载/index.html,除非它请求中的某些内容/static/[hash].js,所以我的理解是该try_files指令将尝试在加载文件/foo/bar/baz,然后回退到/index.html,那么为什么我会得到重定向循环?

答案1

您的配置存在一个问题,如果/index.html找不到,它将重定向到/index.html。最好避免使用此类配置,即使您确定文件在这里。这样的配置不会出现此问题:

root /opt/the-jam/www/dist/;

location / {
    try_files $uri /index.html;
    ...
}

location = /index.html {
    # no try_files here
    ...
}

通过这样的配置,你还可以查看哪里出了问题/index.html以及为什么无法访问。我最好的猜测是,某些中间目录的访问权限不允许 nginx 访问/opt/the-jam/www/dist/index.html

相关内容