location / {
alias /usr/share/phpMyAdmin/;
index index.php;
location ~ /(/.*\.php) {
include fastcgi.conf;
fastcgi_param SERVER_NAME phpmyadmin;
fastcgi_param SCRIPT_FILENAME /usr/share/phpMyAdmin$1;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
}
}
}
#PhpMyAdmin
location / {
#try_files $uri loop;
try_files $uri $uri/ /index.php;
rewrite ^/(.*)$ /index.php last;
}
location ^~ /phpmyadmin/ {
alias /usr/share/phpMyAdmin/;
index index.php;
location ~ /phpmyadmin(/.*\.php) {
include fastcgi.conf;
fastcgi_param SERVER_NAME localhost;
fastcgi_param SCRIPT_FILENAME /usr/share/phpMyAdmin$1;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
}
}
}