How To Install Phpmyadmin And Run It Using Nginx
This video show you how to install PHPMyAdmin and run it with NGINX.
If you have some problems or difficulties or have some other questions then you can ask me in the comment bellow. I will try answer your questions. :)
Please consider supporting me on Patreon :
/ ryudith
Download PHPMyAdmin :
https://www.phpmyadmin.net/downloads/
How to install NGINX :
• How To Install Nginx 1.14 On Windows
How to install PHP 7 :
• How To Install PHP 7 Manually On Wind...
PHPMyAdmin NGINX Configuration :
phpmyadmin project directory location : H:\work\web\phpmyadmin
location /phpmyadmin {
root "H:/work/web";
alias "H:/work/web/phpmyadmin";
index index.php;
try_files $uri $uri/ /phpmyadmin/index.php;
location ~ \.php$ {
root "H:/work/web/phpmyadmin";
fastcgi_pass 127.0.0.1:9000;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root/index.php;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $request_filename;
}
}
Don't forget to change my folder location to your folder location.
#RYUDITHTUTORIAL