`
jimmygan
  • 浏览: 83896 次
  • 性别: Icon_minigender_1
  • 来自: 成都
文章分类
社区版块
存档分类
最新评论

centos环境下nginx+php搭建

阅读更多
我是在centos5环境下搭建的nginx服务器,使用php-fpm方式来驱动php,下面描述下使用配置过程.

环境:
操作系统 : centos 5
nginx-1.0.12
php-5.3.10

1. 安装php-5.3.10
注 : php-fpm已经作为一个模块添加到了php代码中,这里只需要在php编译的时候增加
--enable-fpm


wget http://cn.php.net/distributions/php-5.3.10.tar.gz


tar -zxvf php-5.3.10.tar.gz
cd php-5.3.10


./configure --prefix=php-root --enable-fastcgi --with-mysql=/home/programs/mysql --enable-zend-multibyte --enable-zip --enable-discard-path --enable-force-cgi-redirect --with-libxml-dir --with-curl --with-openssl --with-mysqli --with-zlib --enable-mbstring --with-gd --with-mcrypt --enable-exif --enable-fpm --enable-force-cgi-redirect --enable-pdo --with-pdo-mysql=/home/programs/mysql --with-ttf --with-iconv --enable-xml --with-gd --with-jpeg-dir=/usr/local/  --with-png-dir=/usr/local --with-freetype-dir=/usr/include/freetype2/


make
make install


安装完成之后在php-root/lib/中新建php.ini文件,可以修改一些配置项

注:上面的配置需要根据环境的需求自己修改,以上包含了gd库、mysql、php-fpm等配置

2. 安装nginx-1.0.12
可能需要依赖:
模块依赖:
gcc
gzip     -- zlib
rewrite  -- pcre
ssl      -- openssl

yum install gcc gcc-c++ autoconf automake
yum -y install zlib zlib-devel
yum -y install openssl openssl-devel
yum -y install pcre pcre-devel


下载安装nginx
wget http://nginx.org/download/nginx-1.0.12.tar.gz 
tar -zxvf nginx-1.0.12.tar.gz
cd nginx-1.0.12
./configure --prefix=nginx-root
make
make install


3. 配置php-fpm
先拷贝配置文件,在进行编辑
cp phproot/etc/php-fpm.conf.default -> phproot/etc/php-fpm.conf
vi phproot/etc/php-fpm.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.
user = webadmin
group = webadmin

; The address on which to accept FastCGI requests.
; Valid syntaxes are:
;   'ip.add.re.ss:port'    - to listen on a TCP socket to a specific address on
;                            a specific port;
;   'port'                 - to listen on a TCP socket to all addresses on a
;                            specific port;
;   '/path/to/unix/socket' - to listen on a unix socket.
; Note: This value is mandatory.
listen = 127.0.0.1:9000


可根据需求进行优化设置

4. 制作fpm启动服务
复制下面的代码,vi /etc/init.d/php-fpm,保存
修改可执行权限  chmod +x /etc/init.d/php-fpm
启动   /etc/init.d/php-fpm start
停止   /etc/init.d/php-fpm stop
重启   /etc/init.d/php-fpm restart

#!/bin/bash
# php-fpm Startup script for php-fpm, a FastCGI implementation
# this script was created by tony at 2010.07.21, based on jackbillow's nginx script.
# it is v.0.0.1 version.
# if you find any errors on this scripts,please contact tony.
# by sending mail to tonytzhou at gmail dot com.
#
# chkconfig: - 85 15
# description: php-fpm is an alternative FastCGI implementation, with some additional features useful for sites of any size, especially busier sites.
#
# processname: phpfpm
# pidfile: /usr/local/var/run/phpfpm.pid
# config: /usr/local/etc/phpfpm.conf

phpfpm=/home/programs/php/sbin/php-fpm
config=/home/programs/php/lib/php.ini
pid=/home/programs/php/run/php-fpm.pid

RETVAL=0
prog="phpfpm"

# Source function library.
. /etc/rc.d/init.d/functions

# Source networking configuration.
. /etc/sysconfig/network

# Check that networking is up.
[ ${NETWORKING} = "no" ] && exit 0

[ -x $phpfpm ] || exit 0

# Start phpfpm daemons functions.
start() {

if [ -e $pid ];then
   echo "phpfpm is already running...."
   exit 1
fi

   echo -n $"Starting $prog: "
   daemon $phpfpm -c ${config}
   RETVAL=$?
   echo
   [ $RETVAL = 0 ] && touch /var/lock/subsys/phpfpm
   return $RETVAL

}

# Stop phpfpm daemons functions.
stop() {
        echo -n $"Stopping $prog: "
        killproc $phpfpm
        RETVAL=$?
        echo
        [ $RETVAL = 0 ] && rm -f /var/lock/subsys/phpfpm /var/run/phpfpm.pid
}

# reload phpfpm service functions.
reload() {

    echo -n $"Reloading $prog: "
    #kill -HUP `cat ${pid}`
    killproc $phpfpm -HUP
    RETVAL=$?
    echo

}

# See how we were called.
case "$1" in
start)
        start
        ;;

stop)
        stop
        ;;

reload)
        reload
        ;;

restart)
        stop
        start
        ;;

status)
        status $prog
        RETVAL=$?
        ;;
*)
        echo $"Usage: $prog {start|stop|restart|reload|status|help}"
        exit 1
esac

exit $RETVAL


5. 配置nginx
使用80端口,域名为www.demo.com


#user  nobody;
user webadmin webadmin;
worker_processes  4;
#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;
pid        logs/nginx.pid;
# 指定文件描述符数量
worker_rlimit_nofile 51200;
events {
    # 使用网络I/O模型,linux推荐使用epoll, FressBSD推荐私用kqueue
    use epoll;
    # 允许链接数
    worker_connections  51200;
}
http {
    include       mime.types;
    default_type  application/octet-stream;
    
    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';
    access_log  logs/access.log  main;
    
    #autoindex off;
    # 设置字符集,如果多种字符集,不要设置
    #charset utf-8;
    
    sendfile        on;
    keepalive_timeout  65;
    
    fastcgi_connect_timeout 300;
    fastcgi_send_timeout 300;
    fastcgi_read_timeout 300;
    fastcgi_buffer_size 64k;
    fastcgi_buffers 4 64k;
    fastcgi_busy_buffers_size 128k;
    fastcgi_temp_file_write_size 128k;
    
    #开启gzip
    gzip on;
    gzip_min_length 1k;
    gzip_buffers 4 16k;
    gzip_http_version 1.1;
    gzip_com_level 2;
    gzip_types text/plain text/css application/x-javascript text/xml application/xml application/xml+rss text/javascript;
    gzip_vary on;
    
    server {
        listen 80;
        server_name www.demo.com;
        index index.html index.htm index.php;
        root web-root;
        
        # 图片缓存
        location ~* \.(?:ico|gif|jpe?g|png|bmp|swf)$ {
                # Some basic cache-control for static files to be sent to the browser
                expires max;
                add_header Pragma public;
                add_header Cache-Control "public, must-revalidate, proxy-revalidate";
        }

        # 静态资源缓存
        location ~.*\.(js|css)?$
        {
            expires 1h;
        }
        
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
        
        #
        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        location ~ \.php$ {
            root web-root;
            fastcgi_pass 127.0.0.1:9000; # fpm监听的端口和ip
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME  web-root$fastcgi_script_name;
            include        fastcgi_params;
        }

    }
   
}



配置好后保存nginx.conf,

6. 启动nginx

nginx-root/bin/nginx -c nginx-root/conf/nginx.conf


访问http://www.demo.com就可以了
注: www.demo.com需要绑定到hosts中

后续会增加rewrite的一些自己的理解和总结


2
0
分享到:
评论
2 楼 jimmygan 2013-03-25  
月影无痕 写道
网站所有者也是webadmin吗? 你这样做很不安全?

详细原因见分析:
正确设置网站文件所有者 提高网站安全性 防止被挂木马

http://zhangxugg-163-com.iteye.com/admin/blogs/1171572



谢谢,安全是很重要的环节
1 楼 月影无痕 2013-03-19  
网站所有者也是webadmin吗? 你这样做很不安全?

详细原因见分析:
正确设置网站文件所有者 提高网站安全性 防止被挂木马

http://zhangxugg-163-com.iteye.com/admin/blogs/1171572

相关推荐

    CentOS7 自动化搭建Nginx+PHP7+Mysql+Docker+Docker-Compose Shell脚本

    CentOS7 自动化搭建Nginx+PHP7+Mysql+Docker+Docker-Compose Shell脚本,Docker version 18.06.1-ce,docker-compose version 1.22.0

    centos下安装nginx+php+mysql

    在本文档中,我们将详细介绍如何在 CentOS 6.5 64位操作系统上搭建 LNMP (Nginx + MySQL + PHP) 环境。LNMP 是一种非常流行的 Web 服务器组合,它具有高性能、高并发处理能力等特点,非常适合搭建现代 Web 应用程序...

    lnmp(centos6.2+nginx+mysql+php)环境搭建系统教程--宋正河

    在IT行业中,构建LNMP(Linux + Nginx + MySQL + PHP)环境是常见的服务器配置方式,用于搭建高性能的Web应用程序。本教程由宋正河创作,主要针对CentOS 6.2操作系统,搭配Nginx 1.2.0、MySQL 5.5.3和PHP 5.4.3的...

    基于CentOS 5.4搭建nginx+php+spawn-fcgi+mysql高性能php平台

    ### 基于CentOS 5.4搭建nginx+php+spawn-fcgi+mysql高性能PHP平台 #### 平台概述 在《基于CentOS 5.4搭建nginx+php+spawn-fcgi+mysql高性能php平台》这篇技术文章中,作者哈密瓜详细介绍了如何在CentOS 5.4上构建一...

    CentOS6.5+mysql+nginx+php+memcached安装指南

    Windows8上安装虚拟机VirtualBox,然后新建虚拟电脑,搭建CentOS6.5 + mysql + nginx + php + memcached平台环境,部署网站。文档中记录了部分FAQ。

    centos下安装配置nginx+mysql+php环境

    综上所述,通过上述步骤可以在 CentOS 系统上搭建一个基于 Nginx + MySQL + PHP 的 Web 服务环境,这种组合通常被称为 LNMP(Linux + Nginx + MySQL + PHP)堆栈。通过这种配置,不仅可以有效提升网站的负载能力,还...

    阿里云centos7 lnmp nginx+php+mariadb(mysql)环境搭建

    阿里云centos7.0操作系统上php+nginx+mariadb(mysql)环境的搭建,自己按照这个步骤,半小时就搞定了

    Cacti监控服务器配置教程_基于CentOS+Nginx+MySQL+PHP环境搭建

    通过以上步骤,我们成功在基于CentOS+Nginx+MySQL+PHP的环境下搭建了一个完整的Cacti监控服务器。这不仅能够实时监控局域网内的Linux和Windows主机,还能提供丰富的图表展示和报警机制,帮助管理员及时发现和解决...

    CentOS+Nginx+PHP+MySQL详细配置(图)

    ### CentOS+Nginx+PHP+MySQL 详细配置解析 #### 一、理解 Nginx 及其重要性 ...完成以上步骤后,即可实现 CentOS 上 Nginx、PHP 和 MySQL 的安装与配置,为搭建动态网站提供了一个稳定的环境基础。

    centOS7 配置php+nginx+mysql 环境脚本

    本文将详细介绍如何在CentOS7操作系统上配置PHP+nginx+MySQL的环境,以及使用自动脚本来简化这一过程。这个环境是许多网站和应用程序的常用基础架构,它提供了强大的动态内容处理(PHP),高效的静态资源服务(nginx...

    在centos下安装nginx+mysql+php所需要的文件和扩展

    在CentOS系统中搭建LAMP(Linux + Nginx + MySQL + PHP)环境是一项常见的任务,主要用于构建Web服务器。LAMP架构是许多网站和应用程序的基础,提供了强大的性能和稳定性。以下是在CentOS下安装Nginx、MySQL和PHP...

    centos7-fastdfs+nginx+php开发环境部署.doc

    在本文中,我们将深入探讨如何在CentOS 7环境下搭建FastDFS+nginx+php的开发环境,这是一个常用的技术栈,适用于构建类似微信、京东、淘宝等大型应用的后端小文件服务器。首先,我们来看看所需的软件及其版本: 1. ...

    nginx+apache+mysql+php+memcached+squid搭建门户网站

    ### Nginx+Apache+MySQL+PHP+Memcached+Squid 搭建门户网站 #### 一、前言与架构概述 随着互联网技术的发展,如何构建一个高效、稳定且能够应对高并发访问的Web服务器成为了许多企业和开发者关注的重点。本文将...

    最详细全面的CentOs5.5+mysql+nginx+php5.3.3安全安装手册

    Nginx是一款轻量级的Web服务器/反向代理服务器及电子邮件(IMAP/POP3)代理服务器,在CentOS 5.5环境下安装Nginx的步骤如下: 1. **下载Nginx源码**:从官方网站下载Nginx的源码包。 2. **编译安装**:解压源码包后,...

    Linux下php+nginx+mysql环境搭建(CentOS)

    Linux下php+nginx+mysql环境搭建的知识点主要包括以下几个方面: 一、搭建环境前的准备工作: 1. 准备知识:首先需要了解VMware的原理及使用方法,熟悉Linux系统常用命令,为后续操作打下基础。 2. 准备资料:熟悉...

    centos系统编译安装nginx+php环境另加独立mysql教程.docx

    CentOS系统编译安装Nginx+PHP环境另加独立MySQL教程 本教程将指导您如何在...本教程指导您如何在CentOS系统上编译安装Nginx+PHP环境,并且另外安装独立的MySQL数据库服务器,旨在帮助您快速搭建Web应用程序环境。

    Linux实验-自动部署Nginx+PHP服务器.rar

    在实验文件中,这个shell脚本应该已经包含了所有必要的命令,只需在CentOS 7环境下运行即可实现自动部署。 **五、安全和优化** 在实际生产环境中,还需要考虑更多的安全因素,如限制Nginx和PHP-FPM的权限,设置...

    centos的nginx+php的fastcgi模式编译安装

    这里我们关注的是在CentOS操作系统上使用Nginx作为Web服务器,并结合PHP的FastCGI模式进行编译安装。这种组合通常被称为“Nginx + PHP-FPM”配置,能够提供高性能、低资源消耗的网站服务。下面将详细阐述这一过程...

    CentOS+nginx+fastCGI+mysql配置文档

    在本配置文档中,我们将详细讨论如何在 CentOS 系统上搭建一个基于 Nginx、FastCGI 和 MySQL 的服务器环境。这个配置过程涉及到多个步骤,包括安装必要的软件包、配置 Nginx 以及整合 PHP 和 MySQL。 首先,我们...

Global site tag (gtag.js) - Google Analytics