Added gzip compression for JavaScript, CSS, and HTML to default lighttpd.conf [DHH]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4096 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson
2006-03-29 00:14:05 +00:00
parent 14320dd3e2
commit b583d23f95
2 changed files with 7 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
*SVN*
* Added gzip compression for JavaScript, CSS, and HTML to default lighttpd.conf [DHH]
*1.1.0* (March 27th, 2005)
* Allow db:fixtures:load to load a subset of the applications fixtures. [Chad Fowler]

View File

@@ -3,7 +3,7 @@
server.port = 3000
server.modules = ( "mod_rewrite", "mod_accesslog", "mod_fastcgi" )
server.modules = ( "mod_rewrite", "mod_accesslog", "mod_fastcgi", "mod_compress" )
server.error-handler-404 = "/dispatch.fcgi"
server.document-root = CWD + "/public/"
@@ -11,6 +11,7 @@ server.errorlog = CWD + "/log/lighttpd.error.log"
accesslog.filename = CWD + "/log/lighttpd.access.log"
url.rewrite = ( "^/$" => "index.html", "^([^.]+)$" => "$1.html" )
compress.filetype = ( "text/plain", "text/html", "text/css", "text/javascript" )
# 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.