如何用PHP安装lighttpd?


11

我已经安装了lighttpd,并且工作正常。我尝试按照此处所述安装php5 ,但是当我尝试最后一步时

sudo service lighttpd force-reload

我得到:

[FAIL] Reloading web server configuration: lighttpd failed!

和PHP无法正常工作。

我的lighttpd配置可以在http://pastebin.com/eagG4SwF中找到:

server.modules = (
        "mod_fastcgi",
        "mod_access",
        "mod_alias",
        "mod_compress",
        "mod_redirect",
#       "mod_rewrite",
)

        server.document-root        = "/mnt/www"
server.upload-dirs          = ( "/var/cache/lighttpd/uploads" )
server.errorlog             = "/var/log/lighttpd/error.log"
server.pid-file             = "/var/run/lighttpd.pid"
server.username             = "www-data"
server.groupname            = "www-data"
server.port                 = 80
        server.follow-symlink       = "enable"
        server.dir-listing          = "enable"
        dir-listing.encoding = "utf-8"

index-file.names            = ( "index.php", "index.html", "index.lighttpd.html" )
url.access-deny             = ( "~", ".inc" )
static-file.exclude-extensions = ( ".php", ".pl", ".fcgi" )

compress.cache-dir          = "/var/cache/lighttpd/compress/"
compress.filetype           = ( "application/javascript", "text/css", "text/html", "text/plain" )

# default listening port for IPv6 falls back to the IPv4 port
include_shell "/usr/share/lighttpd/use-ipv6.pl " + server.port
include_shell "/usr/share/lighttpd/create-mime.assign.pl"
include_shell "/usr/share/lighttpd/include-conf-enabled.pl"

1
配置文件有问题。请张贴。
Alex Chamberlain

这是我的lighttpd配置 pastebin.com/eagG4SwF
Euphorbium

Answers:


3

我已经按照在Raspberry Pi(lighttpd)上运行轻量级Web服务器的说明进行工作。

上面链接之后的所需步骤摘要。

  1. 安装lighttpd-> sudo apt-get install lighttpd

  2. 安装mysql数据库(可选)-> sudo apt-get install mysql-server 安装完成后将提示mysql root密码

  3. 安装PHP-> sudo apt-get install php5-common php5-cgi php5 php5-mysql

    注意按照上面列出的顺序进行安装很重要。如果您尝试在未先安装php5-cgi软件包的情况下安装php5,则它将同时安装Apache,对于轻量级的lighttpd服务器,我们不希望这样做。

  4. 安装php mysql库-> sudo apt-get install php5-mysql

  5. 启用lighttpd处理php-> sudo lighty-enable-mod fastcgi-php然后重新加载lighttpdsudo service lighttpd force-reload

  6. 设置/ var / www->的权限sudo chown www-data:www-data /var/www,然后允许组写入dir sudo chmod 775 /var/www,然后添加 piwww-data组中sudo usermod -a -G www-data pi

  7. 注销/登录到代答组权限,因此pi也可以写入 /var/www dir


当我仅使用apt-get install php5安装php时,如果安装了apache怎么办?我怎样才能回到以前的状态?
大戟

@Euphorbium您可以按sudo apt-get autoremove apache安装的apache版本或任何版本将其删除。使用的原因autoremove也是为了消除依赖性。superuser.com/questions/398670/…–
错误的

1

我在我的Pi上安装了lighttpd / php:

我也将www文件夹移动到了已安装的驱动器上。

就我而言,我已将其链接/var/www到该文件夹 /mnt/usb/www(如我所知),而不是更改lighttpd.conf本身的配置。

进行比较的另一件事是,文件末尾有以下部分:

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

我将尝试查找我按照说明进行设置并在此处进行编辑的说明。

编辑:我可能基于设置,但不能确定。


我已经尝试过这种方法,但是它不起作用。
大戟
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.