phpmyadmin под nginx

У меня Linux Mint 19,php - 7.2 настроенный,и сервер nginx, не могу открыть БД в браузере.

Конфиг nginx

server {
        listen   80;
        server_name pma.abzal;
        root /abzal/CodeGuru/phpmyadmin;

location / {
        index  index.php;
        }

## Images and static content is treated different
        location ~* ^.+.(jpg|jpeg|gif|css|png|js|ico|xml)$ {
        access_log        off;
        expires           30d;
        }

location ~ /\.ht {
        deny  all;
        }

location ~ /(libraries|setup/frames|setup/libs) {
        deny all;
        return 404;
        }

location ~ \.php$ {
        include /etc/nginx/fastcgi_params;
        fastcgi_pass 127.0.0.1:9000;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME /abzal/CodeGuru/phpmyadmin$fastcgi_script_name;
        }
}

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