码迷,mamicode.com
首页 > Web开发 > 详细

httpd 2.4连接php-fpm

时间:2018-12-06 14:43:04      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:virtual   etc   var   ide   ref   html   $1   sts   archive   

第一种方法(SetHandler)

追加到/etc/httpd/conf/httpd.conf最后

<FilesMatch .php$>
setHandler "proxy:fcgi://127.0.0.1:9000"
</FilesMatch>

第二种方法(ProxyPassMatch)

虚拟主机内配置

<VirtualHost *:80>
    ServerName www.a.com
    DocumentRoot /var/www/html/
    ProxyRequests Off
    ProxyPassMatch ^/(.*\.php)$ fcgi://127.0.0.1:9000/var/www/html/$1
</VirtualHost>

第三种方法(ProxyPass)

虚拟主机内配置

<VirtualHost *:80>
    ServerName www.a.com
    DocumentRoot /var/www/html/
    <LocationMatch ^(.*.php)$>
        ProxyPass fcgi://127.0.0.1:9000/var/www/html/
        ProxyErrorOverride on
    </LocationMatch>
</VirtualHost>

本文参考了:http://www.taoluyuan.com/index.php/archives/37/#http://www.taoluyuan.com/index.php/archives/37/

httpd 2.4连接php-fpm

标签:virtual   etc   var   ide   ref   html   $1   sts   archive   

原文地址:https://www.cnblogs.com/feng-land/p/10075971.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!