发表于 2018-6-17 15:46:12

Lighttpd php fastcgi Windows 安装

  #定义lighttpd所在目录
  var.root = "D:/Inetpub/Lighttpd"
  #启用的modules(详细见原版lighttpd-inc.conf)
  server.modules            = (
  "mod_access",
  "mod_cgi",
  "mod_accesslog",
  "mod_alias",
  #"mod_fastcgi"
  )
  #服务的目录
  server.document-root      = "D:/Inetpub/www/"
  server.errorlog             = var.root + "/logs/lighttpd.error.log"
  server.upload-dirs          = (var.root + "/tmp")
  accesslog.filename          = var.root + "/logs/access.log"
  #默认首页
  index-file.names            = ( "index.php", "index.html", "index.htm" )
  #使用php
  static-file.exclude-extensions = ( ".php" )
  #使用CGI php的定义
  cgi.assign               = ( ".php"=>"D:/Inetpub/php/php-cgi.exe")
  #使用fastcgi PHP(win版下可使用)
  #fastcgi.server = ( ".php" =>( "localhost" =>("host" => "127.0.0.1","port" => 521 )))
  mimetype.assign             = (
  ".pdf"          =>      "application/pdf",
  ".sig"          =>      "application/pgp-signature",
  ".spl"          =>      "application/futuresplash",
  ".class"      =>      "application/octet-stream",
  ".ps"         =>      "application/postscript",
  ".torrent"      =>      "application/x-bittorrent",
  ".dvi"          =>      "application/x-dvi",
  ".gz"         =>      "application/x-gzip",
  ".pac"          =>      "application/x-ns-proxy-autoconfig",
  ".swf"          =>      "application/x-shockwave-flash",
  ".tar.gz"       =>      "application/x-tgz",
  ".tgz"          =>      "application/x-tgz",
  ".tar"          =>      "application/x-tar",
  ".zip"          =>      "application/zip",
  ".mp3"          =>      "audio/mpeg",
  ".m3u"          =>      "audio/x-mpegurl",
  ".wma"          =>      "audio/x-ms-wma",
  ".wax"          =>      "audio/x-ms-wax",
  ".ogg"          =>      "application/ogg",
  ".wav"          =>      "audio/x-wav",
  ".gif"          =>      "image/gif",
  ".jpg"          =>      "image/jpeg",
  ".jpeg"         =>      "image/jpeg",
  ".png"          =>      "image/png",
  ".xbm"          =>      "image/x-xbitmap",
  ".xpm"          =>      "image/x-xpixmap",
  ".xwd"          =>      "image/x-xwindowdump",
  ".css"          =>      "text/css",
  ".html"         =>      "text/html",
  ".htm"          =>      "text/html",
  ".js"         =>      "text/javascript",
  ".asc"          =>      "text/plain",
  ".c"            =>      "text/plain",
  ".cpp"          =>      "text/plain",
  ".log"          =>      "text/plain",
  ".conf"         =>      "text/plain",
  ".text"         =>      "text/plain",
  ".txt"          =>      "text/plain",
  ".dtd"          =>      "text/xml",
  ".xml"          =>      "text/xml",
  ".mpeg"         =>      "video/mpeg",
  ".mpg"          =>      "video/mpeg",
  ".mov"          =>      "video/quicktime",
  ".qt"         =>      "video/quicktime",
  ".avi"          =>      "video/x-msvideo",
  ".asf"          =>      "video/x-ms-asf",
  ".asx"          =>      "video/x-ms-asf",
  ".wmv"          =>      "video/x-ms-wmv",
  ".bz2"          =>      "application/x-bzip",
  ".tbz"          =>      "application/x-bzip-compressed-tar",
  ".tar.bz2"      =>      "application/x-bzip-compressed-tar"
  )
  #虚拟目录
  alias.url = ( "/ma/" => "D:/Inetpub/ma/" )
  #侦听端口
  server.port                = 81
  mimetype.use-xattr      = "enable"
  #无首页是否列文件目录
  dir-listing.activate      = "enable"
  #服务器的版本好(好像是列目录时显示的)
  server.tag               = "lighttpd/1.4.18i-win32"
  url.access-deny             = ( "~", ".inc" )
  $HTTP["url"] =~ ".pdf$" {
  server.range-requests = "disable"
  }
  4.写运行Lighttpd的批处理文件放在lighttpd的根目录下:
  运行CGI php:
  start_lighttpd - cgi.bat
页: [1]
查看完整版本: Lighttpd php fastcgi Windows 安装