Fedora 18下配置Nginx+PHP
Fedora 18下配置Nginx+PHP
1:安装nginx
yum install nginx
2:安装php
yum install php
3:安装php-fpm
yum install php-fpm
4:配置连接nginx
打开nginx.conf
,
把以上代码注释掉
注意fastcgi_param SCRIPT_FILENAME是php的位置路径
fastcgi_pass:9000端口是,nginx和fastcgi通讯的端口
5:配置php-fpm
打开/etc/php-fpm.d/www.conf
端口一致
6:开启nginx,开启php-fpm
/sbin/nginx
php-fpm -R
7:在nginx工作目录下,新建一个index.php
输入代码
<?php
phpinfo();
?>
打开游览器,输入localhost/index.php
搞定,收工,不用自己编译,使用yum的确很方便
但是这样导致的一个结果就是无法定制化nginx,性能上自然就弱了很多,如果对于大并发真的需要考虑,不妨仔细深入研究php各个拓展,还有nginx,自定义话编译一些拓展,这样的话,性能会提高很多!
相关推荐
zyyjay 2020-11-09
xuebingnan 2020-11-05
samtrue 2020-11-22
stefan0 2020-11-22
yifangs 2020-10-13
songshijiazuaa 2020-09-24
hebiwtc 2020-09-18
天步 2020-09-17
83911535 2020-11-13
whatsyourname 2020-11-13
zhouyuqi 2020-11-10
Noneyes 2020-11-10
mathchao 2020-10-28
王志龙 2020-10-28
wwwsurfphpseocom 2020-10-28
diskingchuan 2020-10-23
savorTheFlavor 2020-10-23