20

我刚刚在我的专用服务器上安装了 lighttpd,启用了 mod_fastcgi,所以我在lighttpd.conf文件中添加了以下行:

fastcgi.server = ( ".php" =>
( "localhost" =>
                     (
                        "socket" => "/tmp/php-fastcgi.socket",
                        "bin-path" => "/usr/local/bin/php-cgi"
                      )
                   )
)

但这仍然没有帮助,因为403 - Forbidden当我尝试在我的网络浏览器中输入 PHP 文件时收到消息......当我index.php从我的网络根目录中删除文件并将其放置在index.html那里时,一切都很好,并且没有错误,无论index.php文件有 100 行还是只有 1 行 -<?php echo 'test'; ?>它总是显示为403 - Forbidden,我现在没有想法。

为什么会这样?

ls -la我的网络根目录:

#
total 6

    drwxr-xr-x  15 root  wheel   1536 Jul 18 10:23 .
    drwxr-xr-x   4 root  wheel    512 Jul 18 08:45 ..
    drwxr-xr-x   2 www   www      512 Jul  1 02:36 cache
    drwxr-xr-x   2 www   www      512 Jul  1 02:36 config
    drwxr-xr-x   6 www   www      512 Jul  1 02:36 inc
-rw-r--r--   1 www   www        9 Jul 18 11:02 index.php
4

5 回答 5

14

您的 php 配置不正确。检查您的 lighttpd error.log 它将显示如下内容:

(mod_fastcgi.c.1397) [ERROR]: spawning fcgi failed. 

我用:

fastcgi.server = ( ".php" => ((                                      
                     "bin-path" => "/bin/php-cgi",             
                     "socket" => "/tmp/php.socket",              
                     "max-procs" => 1,                                     
                     "bin-environment" => (                         
                       "PHP_FCGI_CHILDREN" => "16",                    
                       "PHP_FCGI_MAX_REQUESTS" => "10000"           
                     ),         
                     "broken-scriptfilename" => "enable"
                 )))   

确保在 modules.conf 中启用了 fastcgi

server.modules = (
  "mod_access",
  "mod_fastcgi",
#  "mod_alias",
#  "mod_auth",
#  "mod_evasive",
#  "mod_redirect",
#  "mod_rewrite",
#  "mod_setenv",
#  "mod_usertrack",
)
于 2012-08-20T08:18:28.053 回答
11

同样的问题,Mint 的修复是安装 php5-cgi 包。
sudo apt-get install php5-cgi
启用 fastcgi 模块
sudo lighttpd-enable-mod fastcgi fastcgi-php
并最终重新加载
sudo service lighttpd force-reload

于 2014-11-05T06:52:12.620 回答
6

我遇到过同样的问题。修复就像移动配置文件一样简单,因此启用了。我所做的只是...

$ ln -s /etc/lighttpd/conf-available/10-fastcgi.conf /etc/lighttpd/conf-enabled/
$ ln -s /etc/lighttpd/conf-available/15-fastcgi-php.conf /etc/lighttpd/conf-enabled/

并重新加载...

$ service lighttpd force-reload
于 2013-07-16T20:38:57.057 回答
3

在 ubuntu 上,你可以这样做:

sudo lighty-enable-mod fastcgi 
sudo lighty-enable-mod fastcgi-php

来源:https ://wiki.ubuntu.com/Lighttpd%2BPHP

于 2016-04-03T17:03:22.170 回答
1

不太可能,但应注意作为“403 Forbidden”响应的另一个可能原因。

检查配置文件 (lighttpd.conf) 中的任何访问模块 (mod_access) 语句

例子:

      url.access-deny = ( "", ".php");

文档:模块 mod_access

于 2015-02-26T02:19:50.757 回答