PHP7+Nginx的配置與安裝教程詳解,php7nginx教程詳解_PHP教程

來源:互聯網
上載者:User

PHP7+Nginx的配置與安裝教程詳解,php7nginx教程詳解


下面幫客之家小編把PHP7+Nginx的配置與安裝教程分享給大家,供大家參考,本文寫的不好還請見諒。

系統內容:centos6.5 x64

軟體版本:nginx-1.10.0 php-7.0.6

安裝 Nginx

Nginx官網:http://nginx.org/

先安裝編譯依賴的一些組件

複製代碼 代碼如下:
yum install pcre pcre-devel openssl openssl-devel -y

1、解壓程式包

複製代碼 代碼如下:
tar xf nginx-1.10.0.tar.gz
cd nginx-1.10.0

2、先行編譯配置參數

複製代碼 代碼如下:
./configure --user=www \
--group=www \
--prefix=/data/server/nginx \
--with-http_stub_status_module \
--without-http-cache \
--with-http_ssl_module \
--with-http_gzip_static_module

3、執行編譯

複製代碼 代碼如下:
make && make install

4、替換設定檔

nginx.conf

user www www;worker_processes 1;error_log /u01/data/log/nginx/error.log crit;pid /u01/data/server/nginx/logs/nginx.pid;#Specifies the value for maximum file descriptors that can be opened by this process.worker_rlimit_nofile 65535;events{use epoll;worker_connections 65535;}http {include mime.types;default_type application/octet-stream;#charset gb2312;server_names_hash_bucket_size 128;client_header_buffer_size 32k;large_client_header_buffers 4 32k;client_max_body_size 8m;sendfile on;tcp_nopush on;keepalive_timeout 60;tcp_nodelay on;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 on;gzip_min_length 1k;gzip_buffers 4 16k;gzip_http_version 1.0;gzip_comp_level 2;gzip_types text/plain application/x-javascript text/css application/xml;gzip_vary on;#limit_zone crawler $binary_remote_addr 10m;log_format main '$remote_addr - "$request_time" [$time_local] "$request" ''"$status" $body_bytes_sent "$http_referer" ''"$http_user_agent" $http_x_forwarded_for';log_format '$remote_addr - $remote_user [$time_local] "$request" ''$status $body_bytes_sent "$http_referer" ''"$http_user_agent" $http_x_forwarded_for "$request_time"';include /u01/alidata/server/nginx/conf/vhosts/*.conf;

虛擬機器主機設定檔範本

server {listen 8080;server_name localhost;index index.html index.htm index.php;root /u01/data/www;location ~ .*\.(php|php5)?${fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;fastcgi_index index.php;include fastcgi.conf;}location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)${expires 30d;}location ~ .*\.(js|css)?${expires 1h;}###this is to use open website lianjie like on apache##location / {if (!-e $request_filename) {rewrite ^(.*)$ /index.php?s=$1 last;break;}}location ~ /.svn/ {deny all;}###end##access_log /u01/data/log/nginx/access/test.log main;}

5、提供Nginx啟動指令碼

#!/bin/bash#nginxd=/u01/data/server/nginx/sbin/nginxnginx_config=/u01/data/server/nginx/conf/nginx.confnginx_pid=/u01/data/server/nginx/logs/nginx.pidRETVAL=0prog="nginx"[ -x $nginxd ] || exit 0# Start nginx daemons functions.start() {if [ -e $nginx_pid ] && netstat -tunpl | grep nginx &> /dev/null;thenecho "nginx already running...."exit 1fiecho -n $"Starting $prog!"$nginxd -c ${nginx_config}RETVAL=$?echo[ $RETVAL = 0 ] && touch /var/lock/nginxreturn $RETVAL}# Stop nginx daemons functions.stop() {echo -n $"Stopping $prog!"$nginxd -s stopRETVAL=$?echo[ $RETVAL = 0 ] && rm -f /var/lock/nginx}# reload nginx service functions.reload() {echo -n $"Reloading $prog!"stop() {echo -n $"Stopping $prog!"$nginxd -s stopRETVAL=$?echo[ $RETVAL = 0 ] && rm -f /var/lock/nginx}# reload nginx service functions.reload() {echo -n $"Reloading $prog!"#kill -HUP `cat ${nginx_pid}`$nginxd -s reloadRETVAL=$?echo}# See how we were called.case "$1" instart)start;;stop)stop;;reload)reload;;restart)stopstart;;*)echo $"Usage: $prog {start|stop|restart|reload|help}"exit 1esacexit $RETVAL

只需要稍加修改程式路徑就可立即使用

安裝 PHP7

PHP官網:http://php.net/

PHP擴充:http://pecl.php.net/

先安裝一些為編譯依賴的組建

yum -y install gcc gcc-c++ gcc-g77 make libtool autoconf patch unzip automake libxml2 libxml2-devel ncurses ncurses-devel libtool-ltdl-devel libtool-ltdl libmcrypt libmcrypt-devel libpng libpng-devel libjpeg-devel openssl openssl-devel curl curl-devel libxml2 libxml2-devel ncurses ncurses-devel libtool-ltdl-devel libtool-ltdl autoconf automake libaio*

1、解壓程式包

複製代碼 代碼如下:
tar xf php-7.0.6.tar.bz2
cd php-7.0.6

2、安裝編譯依賴的圖片庫

複製代碼 代碼如下:
jpegsrc.v6b.tar.gz
libpng-1.2.50.tar.gz
freetype-2.1.10.tar.gz

# 安裝 jpegsrc.v6b.tar.gz#這個需要先建立好存放程式的檔案夾不然會報錯mkdir /usr/local/jpeg.6/{bin,lib,include,man/man1} -pvtar xf jpegsrc.v6b.tar.gz cd jpeg-6b/./configure --prefix=/usr/local/jpeg.6/make && make install# 安裝 libpng-1.2.50.tar.gztar xf libpng-1.2.50.tar.gzcd libpng-1.2.50./configure --prefix=/usr/local/libpng.1.2.50make && make install# 安裝 freetype-2.1.10.tar.gztar xf freetype-2.1.10.tar.gzcd freetype-2.1.10./configure --prefix=/usr/local/freetype.2.1.10/make && make install

3、先行編譯配置參數

./configure --prefix=/data/server/php \--enable-opcache \--with-config-file-path=/u01/data/server/php/etc \--enable-mysqlnd \--with-mysqli=mysqlnd \--with-pdo-mysql=mysqlnd \--enable-fpm \--enable-static \--enable-inline-optimization \--enable-sockets \--enable-wddx \--enable-zip \--enable-calendar \--with-gd \--with-iconv \--with-openssl \--with-zlib \--enable-bcmath \--enable-soap \--with-xmlrpc \--enable-mbstring \--enable-shared \--with-curl \--enable-xml \--enable-ftp \--with-mcrypt \--with-mhash \--enable-shmop \--enable-sysvsem \--enable-mbregex \--enable-gd-native-ttf \--enable-pcntl \--enable-session \--with-gettext \--with-freetype-dir=/usr/local/freetype.2.1.10 \--with-jpeg-dir=/usr/local/jpeg.6 \--with-png-dir=/usr/local/libpng.1.2.50 \--disable-ipv6 \--disable-debug \--disable-maintainer-zts \--disable-rpath \--disable-fileinfo \--without-gdbm \

4、執行編譯

複製代碼 代碼如下:
make && make install

5、提供php.ini檔案

複製代碼 代碼如下:
cp php.ini-production /u01/data/server/php/etc/php.ini

配置php.ini

# 在840行左右-設定PHP的opcache和memcache擴充庫zend_extension=opcache.soextension=memcache.so# 722行左右-設定PHP的擴充庫路徑extension_dir = "/u01/data/server/php7/lib/php/extensions/no-debug-non-zts-20151012/"# 避免PHP資訊暴露在http頭中expose_php = Off# 避免暴露php調用mysql的錯誤資訊display_errors = Off# 開啟PHP錯誤記錄檔(路徑在php-fpm.conf中配置)log_errors = On# 設定PHP的時區date.timezone = PRC# 開啟opcache(1733行左右)opcache.enable=1# 設定PHP指令碼允許訪問的目錄# open_basedir = /usr/share/nginx/html;

6、配置php-fpm

php-fpm.conf 進程服務主設定檔

# 設定錯誤記錄檔的路徑error_log = /var/log/php-fpm/error.log# 引入www.conf檔案中的配置include=/usr/local/php7/etc/php-fpm.d/*.conf# 設定主進程開啟的最大檔案數rlimit_files = 102400www.conf 進程服務擴充設定檔# 設定使用者和使用者組user = wwwgroup = www# 設定php監聽方式# listen = 127.0.0.1:9000 # 注意這裡要設定PHP通訊端檔案的許可權,預設是root,Nginx無法訪問。listen = /var/run/php-fpm/php-fpm.sock# 開啟慢日誌slowlog = /var/log/php-fpm/php-slow.logrequest_slowlog_timeout = 10s# 設定背景工作處理序數(根據實際情況設定)pm.max_children = 50# 這裡需要注意,pm.start_servers 不能小於 pm.min_spare_serverspm.start_servers = 5pm.min_spare_servers = 5pm.max_spare_servers = 10pm.max_requests = 10240# 設定php的session目錄(所屬使用者和使用者組都是www)php_value[session.save_handler] = filesphp_value[session.save_path] = /var/tmp/php/session

7、提供php-fpm啟動指令碼

#! /bin/sh#prefix=/u01/data/server/php7exec_prefix=${prefix}php_fpm_BIN=${exec_prefix}/sbin/php-fpmphp_fpm_CONF=${prefix}/etc/php-fpm.confphp_fpm_PID=${prefix}/var/run/php-fpm.pidphp_opts="--fpm-config $php_fpm_CONF --pid $php_fpm_PID"wait_for_pid () {try=0while test $try -lt 35 ; docase "$1" in'created')if [ -f "$2" ] ; thentry=''breakfi;;'removed')if [ ! -f "$2" ] ; thentry=''breakfi;;esacecho -n .try=`expr $try + 1`sleep 1done}case "$1" instart)echo -n "Starting php-fpm "$php_fpm_BIN --daemonize $php_optsif [ "$?" != 0 ] ; thenecho " failed"exit 1fiwait_for_pid created $php_fpm_PIDif [ -n "$try" ] ; thenecho " failed"exit 1elseecho " done"fi;;stop)echo -n "Gracefully shutting down php-fpm "if [ ! -r $php_fpm_PID ] ; thenecho "warning, no pid file found - php-fpm is not running ?"exit 1fikill -QUIT `cat $php_fpm_PID`wait_for_pid removed $php_fpm_PIDif [ -n "$try" ] ; thenecho " failed. Use force-quit"exit 1elseecho " done"fi;;status)if [ ! -r $php_fpm_PID ] ; thenecho "php-fpm is stopped"exit 0fiPID=`cat $php_fpm_PID`if ps -p $PID | grep -q $PID; thenecho "php-fpm (pid $PID) is running..."elseecho "php-fpm dead but pid file exists"fi;;force-quit)echo -n "Terminating php-fpm "if [ ! -r $php_fpm_PID ] ; thenecho "warning, no pid file found - php-fpm is not running ?"exit 1fikill -TERM `cat $php_fpm_PID`wait_for_pid removed $php_fpm_PIDif [ -n "$try" ] ; thenecho " failed"exit 1elseecho " done"fi;;restart)$0 stop$0 start;;reload)echo -n "Reload service php-fpm "if [ ! -r $php_fpm_PID ] ; thenecho "warning, no pid file found - php-fpm is not running ?"exit 1fikill -USR2 `cat $php_fpm_PID`echo " done";;*)echo "Usage: $0 {start|stop|force-quit|restart|reload|status}"exit 1;;esac

八、啟動php-fpm程式

/etc/init.d/php-fpm start# 修改通訊端檔案許可權chown -R /var/run/php-fpm/

http://www.bkjia.com/PHPjc/1125888.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/1125888.htmlTechArticlePHP7+Nginx的配置與安裝教程詳解,php7nginx教程詳解 下面幫客之家小編把PHP7+Nginx的配置與安裝教程分享給大家,供大家參考,本文寫的不好還...

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.