安装 SSL 后,NGINX 出现 ERR_TOO_MANY_REDIRECTS

安装 SSL 后,NGINX 出现 ERR_TOO_MANY_REDIRECTS

看起来,整个网站(Magento 2 商店)运行良好,但后端却不行。后端位于:url.com/admin 商店的其余部分(url.com 和所有类别)url.com/cat1/subcat1 运行良好。

在我的浏览器(chromium)中我收到:ERR_TOO_MANY_REDIRECTS

NGINX 错误日志中没有任何内容,但访问日志中出现了 7 次 302 错误: "GET /admin/admin/index/index/key/1d0cb4d5cebce23da3792027d3ec6f54/ HTTP/1.1" 302

admin 和 index 出现了两次 - 不确定这是否是一个指标?

这是我针对该虚拟主机的 nginx 配置(主要是官方的 + 80 到 443 转发 + 一些针对机器人的阻止):

server {
    listen 80;
    server_name url.com www.url.com;

    location / {
        return 301 https://www.url.com$request_uri;  # enforce https
    }
}

server {
    set $MAGE_ROOT /var/www/html/url.com/www.url.com;

    listen 443 ssl;
    ssl on;
    ssl_certificate /home/secuuser/ssl_certificate/url.com.bundle.crt;
    ssl_certificate_key /home/secuuser/ssl_certificate/url.com.priv.key;

    server_name www.url.com;

    access_log /var/log/nginx/url.com_access.log;
    error_log /var/log/nginx/url.com_error.log;

    root $MAGE_ROOT/pub;

    index index.php;
    autoindex off;
    charset UTF-8;
    error_page 404 403 = /errors/404.php;
    #add_header "X-UA-Compatible" "IE=Edge";

    location / {
        try_files $uri $uri/ /index.php?$args;
    }

    # PHP entry point for main application
    location ~ (index|get|static|report|404|503)\.php$ {
        try_files $uri =404;
        fastcgi_pass   unix:/run/php/php7.0-fpm.sock;
        fastcgi_buffers 1024 4k;

        fastcgi_param  PHP_FLAG  "session.auto_start=off \n suhosin.session.cryptua=off";
        fastcgi_param  PHP_VALUE "memory_limit=768M \n max_execution_time=18000";
        fastcgi_read_timeout 600s;
        fastcgi_connect_timeout 600s;

        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        include        fastcgi_params;
    }

    gzip on;
    gzip_disable "msie6";

    gzip_comp_level 6;
    gzip_min_length 1100;
    gzip_buffers 16 8k;
    gzip_proxied any;
    gzip_types
        text/plain
        text/css
        text/js
        text/xml
        text/javascript
        application/javascript
        application/x-javascript
        application/json
        application/xml
        application/xml+rss
        image/svg+xml;
    gzip_vary on;
}

我在这里和网上看到过很多类似的问题,也尝试过一些。但我无法将获得的知识转化为针对我的情况的解决方案。

答案1

该错误通常意味着您在配置的某处进行了重定向 - 重定向到其自身(例如 admin -> admin)将产生无限循环,因此您的浏览器会感知到并给出错误。

我首先要简化一下 nginx 配置。例如,

server {
    listen 80;
    server_name url.com;
    return       301 https://www.url.com$request_uri;
}

server {
    set $MAGE_ROOT /var/www/html/url.com/www.url.com;

    listen 80;
    #server_name url.hammer-loesungen.de; 
    server_name www.url.com;
    return       301 https://www.url.com$request_uri;
}

可以设置为:

server {
    listen 80;
    server_name url.com www.url.com;
    return       301 https://www.url.com$request_uri;
}

我个人使用以下内容:

server {
        listen 80;
        server_name url.com www.url.com;

   ## Redirect to HTTPs
      location / {
        return 301 https://$host$request_uri;  # enforce https
      }
}

仔细检查配置并删除不需要的内容,将重复的内容合并到相同的规则中以简化操作。如果之后仍然有一次重定向,请尝试使用 curl 进行调试:

curl -kvv http://url.com/admin
curl -kvv https://url.com/admin

对于所有子域名都是如此。

相关内容