Apache httpd 2.4.x 使用 mod_proxy_fcgi 和 PHP-FPM 的方式: http://cnzhx.net/blog/apache-httpd-mod_proxy_fcgi-php-fpm/
解決依賴關系
下載apr apr-util:http://apr.apache.org/download.cgi
編譯安裝apr:
./configure --prefix=/usr/local/apr
make && make install
編譯安裝apr-util:
./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr
make && make install
編譯apache2.4.2:
[root@martin httpd-2.4.20]# ./configure --prefix=/usr/local/apache2.4.2 \
--sysconfdir=/etc/httpd \
--enable-so \
--enable--ssl \
--enable-cgi \
--enable-rewrite \
--with-zlib \
--with-pcre \
--with-apr=/usr/local/apr \
--with-apr-util=/usr/local/apr-util \
--enable-modeles=most \
--enable-mpms-shared=all \
--with-mpm=event
參數詳解:
--prefix:#安裝路徑
--sysconfdir:#指定配置文件路徑
--enable-so:#DSO兼容,DSO=Dynamic Shared Object,動態共享對象,可實現模塊動態生效
--enable-ssl:#支持SSL/TLS,可實現https訪問 需已安裝openssl-devel
--enable-cgi:#支持CGI腳本(默認對非線程的MPM模式開啟)
--enable-rewrite:#啟用Rewrite功能,URL重寫
--enable-deflate:#支持壓縮功能
--with-zlib:#使用指定的zlib庫,不指定路徑會自動尋找
--with-pcre:#使用指定的PCRE庫,不指定路徑會自動尋找 需已安裝pcre-devel
--with-apr:#指定apr安裝路徑
--with-apr-util:#指定apr-util安裝路徑
--enable-mpms-shared:#支持動態加載的MPM模塊,可選參數:all
--with-mpm:#設置默認啟用的MPM模式,{prefork|worker|event}
--enable-modules:#支持動態啟用的模塊,可選參數:all,most,few,reallyall
#編譯之前可使用./configure --help查看各項參數
[root@martin local]# make && make install
[root@martin local]# cd /usr/local
[root@martin local]# ln -sv apache2.4.2/ apache
導入環境變量:
[root@martin local]# vim /etc/profile.d/httpd.sh
export PATH=/usr/local/apache/bin:$PATH
[root@martin local]# . /etc/profile.d/httpd.sh
編譯配置查看:
啟動文件:
#!/bin/bash
#
# httpd Startup script for the Apache HTTP Server
#
# chkconfig: - 85 15
# description: The Apache HTTP Server is an efficient and extensible \
# server implementing the current HTTP standards.
開機啟動:
chmod +x /etc/rc.d/init.d/httpd
chkconfig --add httpd
chkconfig httpd on
安裝php5.6 fast-cgi模式:
依賴:
php-configure-apache:
./configure --prefix=/usr/local/phpfpm \
--with-config-file-path=/etc \
--with-config-file-scan-dir=/etc/php.d \
--with-mysql=mysqlnd \
--with-pdo-mysql=mysqlnd \
--with-mysqli=mysqlnd \
--with-iconv-dir \
--with-freetype-dir \
--with-jpeg-dir \
--with-png-dir \
--with-zlib \
--with-libxml-dir \
--enable-xml \
--disable-rpath \
--enable-bcmath \
--enable-shmop \
--enable-sysvsem \
--enable-inline-optimization \
--with-curl \
--enable-mbregex \
--enable-fpm \
--enable-mbstring \
--with-mcrypt \
--with-gd \
--enable-gd-native-ttf \
--with-openssl \
--with-mhash \
--enable-pcntl \
--enable-sockets \
--with-xmlrpc \
--enable-zip \
--enable-soap \
--enable-short-tags \
--enable-static \
--with-xsl \
--with-fpm-user=apache \
--with-fpm-group=apache \
--enable-ftp
[root@marvin php-5.6.19]#make && make install
[root@marvin php-5.6.19]# cp php.ini-development /etc/php.ini
[root@marvin php-5.6.19]# cp sapi/fpm/init.d.php-fpm /etc/rc.d/init.d/php-fpm
[root@marvin php-5.6.19]# chmod +x /etc/rc.d/init.d/php-fpm
[root@marvin php-5.6.19]# chkconfig --add php-fpm
[root@marvin php-5.6.19]# chkconfig php-fpm on
[root@marvin etc]# cd /usr/local/phpfpm/etc
[root@marvin phpfpm]# cp php-fpm.conf.default php-fpm.conf
[root@marvin phpfpm]# vim php-fpm.conf
pm.max_children = 50
pm.start_servers = 5
pm.min_spare_servers = 2
pm.max_spare_servers = 8
pid = /usr/local/phpfpm/var/run/php-fpm.pid
配置apache
在Apache httpd 2.4以后已經專門有一個模塊針對FastCGI的實現,此模塊為mod_proxy_fcgi.so,它其實是作為mod_proxy.so模塊的擴充,因此,這兩個模塊都要加載:
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_fcgi_module modules/mod_proxy_fcgi.so
添加對php頁面的支持
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
開啟url rewrite:
開啟防止啟動警告
開啟虛擬主機:
虛擬主機:
<VirtualHost *:80>
DocumentRoot "/www/web/forum"
ServerName www.forum.com
ProxyRequests Off
ProxyPassMatch ^/(.*\.php)$ fcgi://127.0.0.1:9000/www/web/forum/$1
<Directory "/www/web/forum">
Options none
AllowOverride none
Require all granted
</Directory>
</VirtualHost>