Jump to content

Edit History

Lomik

Lomik


config nginx

Люди добрые помогите пожалуйста победить "Циклическое перенаправление на странице" под 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.

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

Lomik

Lomik

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

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

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

Nginx конфиг: 

Quote

server {

        listen 127.0.0.1:80;
        server_name    www.site.ru site.ru;
        root  /home/data/www/site.ru;
        index index.html;

        # 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.html;
        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.

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

Lomik

Lomik

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

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

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

Nginx конфиг: 

Quote

server {

        listen 127.0.0.1:80;
        server_name    www.site.ru site.ru;
        root  /home/data/www/site.ru;
        index index.html;

        # 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.html?$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.html;
        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.

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

×
×
  • Create New...