centos環境下編譯安裝nginx+php搭建

來源:互聯網
上載者:User
我是在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中


聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.