Jump to content

Recommended Posts

Люди добрые помогите пожалуйста победить "Циклическое перенаправление на странице" под CloudFlare.

Админка работает частично, в настройки магазина зайти не могу.

Веб сервер nginx+php-fpm.

Nginx конфиг: 

Quote

server {
        listen 127.0.0.1:80;
        server_name    www.site.ru site.ru;
        root  /home/user/www/site.ru;
        index index.php;

        # serve static files directly
        location ~* \.(jpg|jpeg|gif|css|png|js|ico|html)$ {
                access_log off;
                expires max;
                log_not_found off;
        }

        location / {
                # add_header Access-Control-Allow-Origin *;
                try_files $uri $uri/ /index.php?$query_string;
        }

        location ~* \.php$ {
        try_files $uri = 404;
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;
    }

    location ~ /\.ht {
                deny all;
        }
}

В админке CloudFlare включил:

Always Use HTTPS и Automatic HTTPS Rewrites, 

так же прописал Page Rules редирект с www.

Прошу помощи с решением сложившейся ситуации. Спасибо.

Edited by Lomik
config nginx (see edit history)
Link to comment
Share on other sites

  • Lomik changed the title to CloudFlare

Смогу помочь, только если будет root доступ к серверу, админке и базе данных.

Причин много может быть, от неверного подключения скриптов на странице до некорректной настройке сервера, просто так не скажешь.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...