Администратор Magento показывает ERR_TOO_MANY_REDIRECTS на nginx - PullRequest
0 голосов
/ 10 мая 2019

Я пытаюсь настроить администратора Magento на отдельном поддомене, я следую этому руководству [https://magento2.atlassian.net/wiki/spaces/m1wiki/pages/14024833/Set+up+Magento+backend+on+a+separate+node], но получаю сообщение об ошибке ERR_TOO_MANY_REDIRECTS.

У меня проблема только при доступеadmin.example.com/index.php/admin или admin.example.com, но я могу получить доступ к admin.example.com/test.php.

Ниже приведен файл конфигурации nginx, подскажите, пожалуйста, что мне не хватает.

server {
    listen      80;
    server_name admin.example.com;
    keepalive_timeout   70;
    root        /var/www/html/example.prod;

    access_log /var/log/nginx/admin_access_log;
    error_log /var/log/nginx/admin_error_log;

    location / {
        return 301 http://admin.example.com/index.php/admin;
        #try_files $uri $uri/ @handler;
        expires 30d;
    }

    location /app/                       { deny all; }
    location /includes/                  { deny all; }
    location /lib/                       { deny all; }
    location /media/downloadable/        { deny all; }
    location /pkginfo/                   { deny all; }
    location /report/config.xml          { deny all; }
    location /var/                       { deny all; }

    location /var/export/ {
        auth_basic              "Restricted";
        auth_basic_user_file    htpasswd;
        autoindex               on;
    }
    location  /. {
        return 404;
    }

    location ~ .php/ {
        rewrite ^(.*.php)/ $1 last;
    }

    location ~ \.php$ {
        try_files $uri =404;
        expires off;
        fastcgi_read_timeout 1800s;
        fastcgi_index index.php;
        fastcgi_pass 127.0.0.1:9000;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include /etc/nginx/fastcgi_params;
    }
    gzip on;
    add_header "Access-Control-Allow-Origin" "*";
    gzip_min_length  1000;
    gzip_proxied any;
    gzip_types       text/plain application/xml text/css text/js application/x-javascript;
}
...