diff options
Diffstat (limited to 'railties/configs')
-rw-r--r-- | railties/configs/lighttpd.conf | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/railties/configs/lighttpd.conf b/railties/configs/lighttpd.conf index f9ab45263b..80a6703b37 100644 --- a/railties/configs/lighttpd.conf +++ b/railties/configs/lighttpd.conf @@ -12,11 +12,13 @@ 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" => 2, - "max-procs" => 2, + "min-procs" => 1, + "max-procs" => 1, "socket" => "log/fcgi.socket", "bin-path" => "public/dispatch.fcgi", "bin-environment" => ( "RAILS_ENV" => "development" ) |