Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to configure a nginx server to support phpmyadmin

2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly introduces how to configure the nginx server to support phpmyadmin, has a certain reference value, interested friends can refer to, I hope you can learn a lot after reading this article, the following let Xiaobian take you to understand.

1. Download and decompress phpmyadmin first

After the download is complete, extract:

Unzip phpMyAdmin-4.1.12-all-languages.zip

Move to the appropriate directory location and change it to an easily accessible name:

Mv phpMyAdmin-4.1.12-all-languages / www/phpmyadmin

2. Then configure phpmyadmin

Copy a configuration file:

# cd / www/phpmyadmin#cp config.sample.inc.php config.inc.php

Configure config.inc.php

# vi config.inc.php

Set a secret key for internal use (related to internal encryption, not directly related to page login)

$cfg ['blowfish_secret'] =' www.tudaxia.com'

3. Configure sites under Nginx

Vi / etc/nginx/conf.d/phpmyadmin.confserver {listen 8081; server_name localhost; access_log / var/log/nginx/phpmyadmin-access.log main; location / {root / www/phpmyadmin; index index.php;} location ~\ .php$ {root / www/phpmyadmin; fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params } location ~ /\ .ht {deny all;}}

4. Restart nginx

# service nginx restart

Configuration complete.

Thank you for reading this article carefully. I hope the article "how to configure the nginx server to support phpmyadmin" shared by the editor will be helpful to everyone. At the same time, I also hope that you will support us and pay attention to the industry information channel. More related knowledge is waiting for you to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report