
Problem:
Have installed the latest stable version of Nginex (1.4.4) and want to install phpMyAdmin, unfortunately when I try to The following error occurs when opening phpMyAdmin via http://192 in the server. . ./phpMyAdmin:


server {
listen 30425;
# Don't want to log accesses.
#access_log /dev/null main;
access_log /var/log/nginx/php.acces_log main;
error_log /var/log/nginx/php.error_log info;
root /usr/share/phpmyadmin;
index index.php index.html index.htm;
error_page 401 403 404 /404.php;
location ~ .*.php${
include fastcgi_params;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param SERVER_NAME $http_host;
fastcgi_ignore_client_abort on;
}}ln -s / etc / nginx / sites-available / php // etc / nginx / sites-enabled
log_format main ‘$remote_addr – $remote_user [$time_local] ‘
‘”$request” $status $body_bytes_sent “$http_referer” ‘
‘”$http_user_agent” “$http_x_forwarded_for”‘ ;http://example.com:30425.
The above is the detailed content of The phpmyadmin file cannot be found under nginx. For more information, please follow other related articles on the PHP Chinese website!