码迷,mamicode.com
首页 > 数据库 > 详细

Nginx-10.php-nginx-mysql联动

时间:2020-06-23 19:38:22      阅读:57      评论:0      收藏:0      [点我收藏+]

标签:com   htm   clu   文件   pre   class   link   nginx配置文件   success   

一、nginx+php
nginx配置文件中增加以下内容

cat /usr/local/nginx/conf/nginx.conf
server {
listen 80;
server_name www.example.com;
location / {
root html;
index index.html index.htm;
}
location ~ .*\.(php|php5)?$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi.conf;
}
}

创建phpinfo

echo "<?php phpinfo(); ?>" >/usr/local/nginx/html/test_info.php

重启nginx

nginx -t
nginx -s reload

访问www.example.com/test_info.php,显示php配置信息则表示nginx与php联通(提前启动好php-fpm)

二、php+mysql
创建mysql测试页面

cat /usr/local/nginx/html/test_mysql.php
<?php
$link_id=mysql_connect(‘localhost‘,‘root‘,‘123456‘) or myssql_error();
if($link_id){
echo "mysql successful !!!";
}else{
echo mysql_error();
}
?>

访问www.example.com/test_mysql.php,显示自定义的成功提示信息则表示php与mysql联通(提前启动好mysql)

Nginx-10.php-nginx-mysql联动

标签:com   htm   clu   文件   pre   class   link   nginx配置文件   success   

原文地址:https://www.cnblogs.com/Wang-Hongwei/p/13183754.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!