当前位置: > Linux服务器 > nginx >

centos6.5直接yum安装nginx,并且支持php访问的配置

时间:2014-07-16 02:23来源:linux.it.net.cn 作者:IT网

但是今天装了CentOS6.5,直接yum install nginx不行,要先处理下源,下面是安装完整流程,也十分简单:

CentOS 6,先执行(过程慢点,其实可以手动下载,然后在本地运行):
 

  • rpm -ivh http://nginx.org/packages/centos/6/noarch/RPMS/nginx-release-centos-6-0.el6.ngx.noarch.rpm  
  • yum -y install nginx  
  • yum -y php-fpm  
  • service php-fpm restart  
  • service nginx restart  
  • chkconfig php-fpm on  
  • chkconfig nginx on  
rpm -ivh http://nginx.org/packages/centos/6/noarch/RPMS/nginx-release-centos-6-0.el6.ngx.noarch.rpm
yum -y install nginx
yum -y php-fpm
service php-fpm restart
service nginx restart
chkconfig php-fpm on
chkconfig nginx on


 

下面是配置:

vi /etc/nginx/conf.d/default.conf

 

 
  1. server {  
  2.     listen       80;  
  3.     server_name  localhost;  
  4.     autoindex    on;  
  5.     #charset koi8-r;  
  6.     #access_log  /var/log/nginx/log/host.access.log  main;  
  7.   
  8.     location / {  
  9.         root   /var/www/html;  
  10.         index  index.html index.htm index.php;  
  11.     }  
  12.   
  13.     location ~ \.php$ {  
  14.         root           /var/www/html;  
  15.         fastcgi_pass   127.0.0.1:9000;  
  16.         fastcgi_index  index.php;  
  17.         fastcgi_param  SCRIPT_FILENAME  /var/www/html$fastcgi_script_name;  
  18.         include        fastcgi_params;  
  19.     }....  
server {
    listen       80;
    server_name  localhost;
    autoindex    on;
    #charset koi8-r;
    #access_log  /var/log/nginx/log/host.access.log  main;

    location / {
        root   /var/www/html;
        index  index.html index.htm index.php;
    }

    location ~ \.php$ {
        root           /var/www/html;
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  /var/www/html$fastcgi_script_name;
        include        fastcgi_params;
    }....
以下全是#号。 (责任编辑:IT)
------分隔线----------------------------
栏目列表
推荐内容