mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Added default lighttpd config in config/lighttpd.conf and added a default runner for lighttpd in script/lighttpd (works like script/server, but using lighttpd and FastCGI) [DHH]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2787 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
parent
5f73ba11ce
commit
9ad0f08985
2 changed files with 84 additions and 0 deletions
10
railties/bin/lighttpd
Normal file
10
railties/bin/lighttpd
Normal file
|
@ -0,0 +1,10 @@
|
|||
#!/usr/local/bin/ruby
|
||||
|
||||
if RUBY_PLATFORM !~ /mswin/ && `lighttpd -version 2>/dev/null`.size > 0
|
||||
puts "=> Rails application started on http://0.0.0.0:3000"
|
||||
puts "=> Ctrl-C to shutdown server"
|
||||
|
||||
`lighttpd -D -f #{File.dirname(__FILE__) + "/../"}/config/lighttpd.conf`
|
||||
else
|
||||
puts "lighttpd is not available on your system"
|
||||
end
|
74
railties/configs/lighttpd.conf
Normal file
74
railties/configs/lighttpd.conf
Normal file
|
@ -0,0 +1,74 @@
|
|||
# Default configuration file for the lighttpd web server
|
||||
# Start using ./script/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" )
|
||||
|
||||
fastcgi.server = ( ".fcgi" =>
|
||||
( "localhost" =>
|
||||
(
|
||||
"min-procs" => 2,
|
||||
"max-procs" => 2,
|
||||
"socket" => "log/fcgi.socket",
|
||||
"bin-path" => "public/dispatch.fcgi",
|
||||
"bin-environment" => ( "RAILS_ENV" => "development" )
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
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" => "audio/x-wav",
|
||||
".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",
|
||||
".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"
|
||||
)
|
Loading…
Reference in a new issue