Город МОСКОВСКИЙ
00:05:31

How To Install PHPMyAdmin NGINX On Windows

Аватар
Разработка PHP и Laravel SPA
Просмотры:
23
Дата загрузки:
30.11.2023 10:01
Длительность:
00:05:31
Категория:
Обучение

Описание

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 :
https://www.patreon.com/ryudith


Download PHPMyAdmin :
https://www.phpmyadmin.net/downloads/


How to install NGINX :
https://youtu.be/Sc0nJtVtWSI


How to install PHP 7 :
https://youtu.be/jO3gweU6ASU


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

Рекомендуемые видео