Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我将一个大文件上传到 Rails 服务器时,我总是收到请求超时错误。我不知道在哪里更改请求超时值。
对于 webrick,有一个名为/usr/lib/ruby/1.9.1/webrick/config.rb.
/usr/lib/ruby/1.9.1/webrick/config.rb
位置可能因您的版本和安装方法而异。在该文件中有一行:
:RequestTimeout => 30可以修改。
:RequestTimeout => 30
而在thin,thin -t 60使超时时间为60秒,默认为30
thin -t 60