Nginx configuration to implement Apache alias, nginxalias
Configure access/phpymadmin/actual access content d:/wamp/apps/phpmyadmin4.1.14/phpmyadmin /,
Debugging takes a long time before it is implemented.
In fact, I originally stored phpmyadmin/directly in d:/wamp/apps/phpmyadmin4.1.14/, but found that it could not be implemented, and finally put d: /wamp/apps/phpmyadmin4.1.14/All are moved to the phpmyadmin folder created in his directory, and the location ~ \. Php $ is copied to location/phpmyadmin.
If there is a better way to achieve, welcome to exchange default.fu@foxmail.com
server {listen 80;server_name localhost 127.0.0.1 192.168.100.*;root d:/localhost;index index.html index.htm index.php;autoindex on; autoindex_exact_size off;autoindex_localtime on;location /phpmyadmin {root d:/wamp/apps/phpmyadmin4.1.14;location ~ \.php$ {try_files $uri =404;fastcgi_pass 127.0.0.1:9000;fastcgi_index index.php;fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;include fastcgi_params; }}location ~ \.php$ {try_files $uri =404;fastcgi_pass 127.0.0.1:9000;fastcgi_index index.php;fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;include fastcgi_params; }#error_page 404 /404.html;# redirect server error pages to the static page /50x.html#error_page 500 502 503 504 /50x.html;location = /50x.html {root html;}location ~ /\.(ht|svn|git) {deny all;}}