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

slhcrj9b  于 2023-08-03  发布在  Nginx
关注(0)|答案(4)|浏览(257)

我不知道为什么会出现这个错误:“在nginx.conf中内部重定向到“/index.html””时重写或内部重定向循环

user www-data; worker_processes auto; pid /run/nginx.pid; 

events { worker_connections 768; # multi_accept on; } 

 http {

 sendfile on; tcp_nopush on; tcp_nodelay on; keepalive_timeout 65; types_hash_max_size 2048; # server_tokens off;

 # server_names_hash_bucket_size 64; # server_name_in_redirect off;

 include /etc/nginx/mime.types; default_type application/octet-stream;

 ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE #ssl_prefer_server_ciphers on;

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

 gzip on; gzip_disable "msie6"; 

 upstream api { server 127.0.0.1:8080; }

 server { listen 0.0.0.0:80; root /open-ethereum-pool/www/dist; index index.html index.htm;

 server_name localhost;

 location /api { proxy_pass http://api; } 

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

 }

}

字符串

6ioyuze2

6ioyuze21#

问题与您的配置有关

server {

    listen 0.0.0.0:80; 
    root /open-ethereum-pool/www/dist; 
    index index.html index.htm;

    server_name localhost;

    location /api {
        proxy_pass http://api;
    }

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

字符串
变更

try_files $uri $uri/ /index.html;


try_files $uri $uri/ /index.html =404;


这将确保即使index.html不在那里,您也会得到404而不是内部重定向循环
目前,当您浏览/index.html时,正在发生的情况如下所示
它变成了

try_files /index.html /index.html/ /index.html;


现在,如果/index.html不存在,那么您的回退选项(try_file的最后一个参数)是/index.html。这将创建内部重定向循环。因此,创建index.html文件并使用下面的try_files方法来避免此类问题

try_files $uri $uri/ /index.html =404;

up9lanfz

up9lanfz2#

大多数时候,你会想求助于一个花哨的404,而不仅仅是默认的nginx错误页面。
变更

try_files $uri $uri/ /index.html;

字符串

try_files $uri $uri/ /error.html;


显然,您必须将此error.html放置在根目录中,甚至

try_files $uri $uri/ /error404/error.html;

j2cgzkjk

j2cgzkjk3#

在我的例子中,我得到了这个错误,因为在根目录中缺少index.html文件。在我添加index.html文件后,它开始正常工作。

50pmv0ei

50pmv0ei4#

请检查此目录;

/etc/nginx/sites-enabled (Debian dist.)

字符串
有一个名为默认的文件,该文件链接到您的网站conf。即使你改变你的nginx_conf这个文件是有效的nginx服务器

相关问题