lighttpd.conf
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:2k
源码类别:

Ajax

开发平台:

Others

  1. # Default configuration file for the lighttpd web server
  2. # Start using ./script/server lighttpd
  3. server.port = 3000
  4. server.modules           = ( "mod_rewrite", "mod_accesslog", "mod_fastcgi" )
  5. server.error-handler-404 = "/dispatch.fcgi"
  6. server.document-root     = CWD + "/public/"
  7. server.errorlog          = CWD + "/log/lighttpd.error.log"
  8. accesslog.filename       = CWD + "/log/lighttpd.access.log"
  9. url.rewrite              = ( "^/$" => "index.html", "^([^.]+)$" => "$1.html" )
  10. # Change *-procs to 2 if you need to use Upload Progress or other tasks that
  11. # *need* to execute a second request while the first is still pending.
  12. fastcgi.server = ( ".fcgi" =>
  13.   ( "localhost" =>
  14.       (
  15.         "min-procs" => 2, 
  16.         "max-procs" => 2,
  17.         "socket"    => CWD + "/tmp/sockets/fcgi.socket",
  18.         "bin-path"  => CWD + "/public/dispatch.fcgi",
  19.         "bin-environment" => ( "RAILS_ENV" => "development" )
  20.       )
  21.   )
  22. )
  23. mimetype.assign = (  
  24.   ".css"        =>  "text/css",
  25.   ".gif"        =>  "image/gif",
  26.   ".htm"        =>  "text/html",
  27.   ".html"       =>  "text/html",
  28.   ".jpeg"       =>  "image/jpeg",
  29.   ".jpg"        =>  "image/jpeg",
  30.   ".js"         =>  "text/javascript",
  31.   ".png"        =>  "image/png",
  32.   ".swf"        =>  "application/x-shockwave-flash",
  33.   ".txt"        =>  "text/plain"
  34. )
  35. # Making sure file uploads above 64k always work when using IE or Safari
  36. # For more information, see http://trac.lighttpd.net/trac/ticket/360
  37. $HTTP["useragent"] =~ "^(.*MSIE.*)|(.*AppleWebKit.*)$" {
  38.   server.max-keep-alive-requests = 0
  39. }