[CentOS] Right way to install phpMyAdmin through Nginx and PHP-FPM

Thu Oct 30 10:06:58 UTC 2014
John Doe <jdmls at yahoo.com>

From: "reynierpm at gmail.com" <reynierpm at gmail.com>

>                location ~ \.php$ {
>                    include /etc/nginx/fastcgi_params;
>                    fastcgi_pass 127.0.0.1:9000;
>                    fastcgi_index index.php;
>                    fastcgi_param SCRIPT_FILENAME $root$fastcgi_script_name;
>                }
> ...
> nginx: [emerg] unknown "root" variable
> nginx: configuration file /etc/nginx/nginx.conf test failed

Maybe you meant to use '$document_root' ...

JD