Sha256: dc2ee1281627cdc5be9d24f54c2896c46a01604b29ce653f9299de41f45d0b27
Contents?: true
Size: 1.24 KB
Versions: 3
Compression:
Stored size: 1.24 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 = "public/" server.errorlog = "log/lighttpd.error.log" accesslog.filename = "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" => 1, "max-procs" => 1, "socket" => "log/fcgi.socket", "bin-path" => "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" )
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
rails-0.14.4 | configs/lighttpd.conf |
rails-0.14.3 | configs/lighttpd.conf |
rails-1.0.0 | configs/lighttpd.conf |