nginx配置文件可以访问index.php页面显示mysql的数据在网页上,配置文件应该修改为什么样?
时间: 2024-02-21 13:56:47 浏览: 104
PHP 网站修改默认访问文件的nginx配置
要让nginx配置文件可以访问index.php页面显示mysql的数据在网页上,需要进行以下配置:
1. 安装php和php-fpm:
```
sudo apt-get install php-fpm php-mysql
```
2. 修改nginx配置文件,在server段添加以下代码:
```
location ~ \.php$ {
fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
```
3. 重启nginx和php-fpm服务:
```
sudo service nginx restart
sudo service php7.0-fpm restart
```
4. 编写php代码以连接mysql数据库并查询数据,将数据显示在网页上。
注意:以上代码是在Ubuntu 16.04上进行的测试,如果您使用其他操作系统或版本,请根据实际情况进行修改。
阅读全文