Sha256: aafd85c2b55ba6cf126db40dffb3f65a8c1e5178839438281a50786b9fd2dd28

Contents?: true

Size: 1.51 KB

Versions: 30

Compression:

Stored size: 1.51 KB

Contents

# Default configuration file for the lighttpd web server
# Start using ./script/server lighttpd

server.port = 3000

server.modules           = ( "mod_rewrite", "mod_accesslog", "mod_fastcgi" )
server.error-handler-404 = "/dispatch.fcgi"
server.document-root     = CWD + "/public/"

server.errorlog          = CWD + "/log/lighttpd.error.log"
accesslog.filename       = CWD + "/log/lighttpd.access.log"

url.rewrite              = ( "^/$" => "index.html", "^([^.]+)$" => "$1.html" )

# Change *-procs to 2 if you need to use Upload Progress or other tasks that
# *need* to execute a second request while the first is still pending.
fastcgi.server = ( ".fcgi" =>
  ( "localhost" =>
      (
        "min-procs" => 2, 
        "max-procs" => 2,
        "socket"    => CWD + "/tmp/sockets/fcgi.socket",
        "bin-path"  => CWD + "/public/dispatch.fcgi",
        "bin-environment" => ( "RAILS_ENV" => "development" )
      )
  )
)

mimetype.assign = (  
  ".css"        =>  "text/css",
  ".gif"        =>  "image/gif",
  ".htm"        =>  "text/html",
  ".html"       =>  "text/html",
  ".jpeg"       =>  "image/jpeg",
  ".jpg"        =>  "image/jpeg",
  ".js"         =>  "text/javascript",
  ".png"        =>  "image/png",
  ".swf"        =>  "application/x-shockwave-flash",
  ".txt"        =>  "text/plain"
)

# Making sure file uploads above 64k always work when using IE or Safari
# For more information, see http://trac.lighttpd.net/trac/ticket/360
$HTTP["useragent"] =~ "^(.*MSIE.*)|(.*AppleWebKit.*)$" {
  server.max-keep-alive-requests = 0
}

Version data entries

30 entries across 30 versions & 1 rubygems

Version Path
typo-5.5 config/lighttpd.conf
typo-5.4.4 config/lighttpd.conf
typo-5.4.3 config/lighttpd.conf
typo-5.4.2 config/lighttpd.conf
typo-5.4.1 config/lighttpd.conf
typo-5.4 config/lighttpd.conf
typo-3.99.0 config/lighttpd.conf
typo-3.99.3 config/lighttpd.conf
typo-3.99.1 config/lighttpd.conf
typo-3.99.2 config/lighttpd.conf
typo-3.99.4 config/lighttpd.conf
typo-4.0.0 config/lighttpd.conf
typo-4.0.2 config/lighttpd.conf
typo-4.0.1 config/lighttpd.conf
typo-4.1.1 config/lighttpd.conf
typo-4.0.3 config/lighttpd.conf
typo-5.0.1 config/lighttpd.conf
typo-4.1 config/lighttpd.conf
typo-5.0.2 config/lighttpd.conf
typo-5.0.3.98.1 config/lighttpd.conf