mirror of
https://github.com/github/rails.git
synced 2026-01-29 08:18:03 -05:00
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:
@@ -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]
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user