Сессия страницы истекла

При переходе на данную страницу с компонентом bitrix:bizproc.wizards происходит ошибка сессии введите сюда описание изображения

http {
include mime.types;
default_type application/octet-stream;
sendfile on;

server {
    root /usr/share/nginx/html;
    listen 80;
    server_name localhost;
    client_max_body_size 200m;

    index index.php bitrixsetup.php restore.php;

    location ~ \.php$ {
        try_files $uri =404;
        fastcgi_pass php:9000;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;
    }
    error_page 404 = /404.php;

    location / { try_files $uri $uri/ /bitrix/urlrewrite.php$is_args$args; }

}

}


Ответы (0 шт):