博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
nginx 配置php
阅读量:6820 次
发布时间:2019-06-26

本文共 1043 字,大约阅读时间需要 3 分钟。

安装php

yum install php
 
yum install php-mysql php-gd php-imap php-ldap php-odbc php-pear php-xml php-xmlrpc

 

添加nginx 默认主页index.php 

vim /etc/nginx/conf.d/default.conf 

 

location / {

        root   /usr/share/nginx/html;   //改路径

        index  index.html index.htm index.php;  //index.php

    }

 

配置nginx支持php

vim /etc/nginx/conf.d/default.conf 

 

# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000

    #

    location ~ .php$ {

        root           html;    //改路径

        fastcgi_pass   127.0.0.1:9000;

        fastcgi_index  index.php;

        fastcgi_param  SCRIPT_FILENAME  /usr/share/nginx/html$fastcgi_script_name;    //改路径

        include        fastcgi_params;

    }

 

配置php-fpm

vim /etc/php-fpm.d/www.conf

 

; Unix user/group of processes

; Note: The user is mandatory. If the group is not set, the default user's group

;       will be used.

; RPM: apache Choosed to be able to access some dir as httpd

user = nginx

; RPM: Keep a group allowed to write in log dir.

group = nginx

 

chkconfig php-fpm on    #设置php-fpm自启动

chkconfig mysqld on     #设置mysqld自启动

service nginx restart   #重新启动nginx

service php-fpm start   #启动php-fpm

service mysqld start    #启动mysqld

转载地址:http://drpzl.baihongyu.com/

你可能感兴趣的文章
POP3与IMAP协议
查看>>
[C]有符号数和无符号数
查看>>
结构变量作为方法的参数调用,在方法内部使用的“坑”你遇到过吗?
查看>>
Windows Mobile打包时增加快捷方式到开始菜单的方法
查看>>
深度解析C++拷贝构造函数
查看>>
今天的主角:豆豆。
查看>>
Oracle: 四、对scott用户的基本查询操作(上篇)
查看>>
[Map 3D开发实战系列] Map Resource Explorer 之三-- 添加AutoCAD风格的Palette界面
查看>>
QC在win7远程执行QTP脚本excel不能读取,及其其他win7问题解决方案(图解转)
查看>>
LVS
查看>>
iOS:iPad和iPhone开发的异同(UIPopoverController、UISplitViewController)
查看>>
使用goto跳转到switch的某个case
查看>>
SPSS学习系列之SPSS Statistics导入读取数据(多种格式)(图文详解)
查看>>
ABP理论学习之Abp Session
查看>>
智能指针 shared_ptr 解析
查看>>
浏览器的并发数列表
查看>>
如何正确从他人机器MySQL数据库下拷贝出.sql,再导入到自己windows下MySQL数据库(图文详解)...
查看>>
自定义 Web 服务器控件
查看>>
关于gnome
查看>>
Git忽略规则.gitignore梳理
查看>>