dev: remove isolate dependency
[unicorn.git] / FAQ
blob66f1a098ff8b023569632a40aa25794333377ef2
1 = Frequently Asked Questions about Unicorn
3 === Why aren't my Rails log files rotated when I use SIGUSR1?
5 The Rails autoflush_log option must remain disabled with multiprocess
6 servers such as unicorn.  Buffering in userspace may cause lines to be
7 partially written and lead to corruption in the presence of multiple
8 processes.  With reasonable amounts of logging, the performance impact
9 of autoflush_log should be negligible on Linux and other modern kernels.
11 === I've installed Rack 1.1.x, why can't Unicorn load Rails (2.3.5)?
13 Rails 2.3.5 is not compatible with Rack 1.1.x.  Unicorn is compatible
14 with both Rack 1.1.x and Rack 1.0.x, and RubyGems will load the latest
15 version of Rack installed on the system.  Uninstalling the Rack 1.1.x
16 gem should solve gem loading issues with Rails 2.3.5.  Rails 2.3.6
17 and later correctly support Rack 1.1.x.
19 === Why are my redirects going to "http" URLs when my site uses https?
21 If your site is entirely behind https, then Rack applications that use
22 "rack.url_scheme" can set the following in the Unicorn config file:
24   HttpRequest::DEFAULTS["rack.url_scheme"] = "https"
26 For frameworks that do not use "rack.url_scheme", you can also
27 try setting one or both of the following:
29   HttpRequest::DEFAULTS["HTTPS"] = "on"
30   HttpRequest::DEFAULTS["HTTP_X_FORWARDED_PROTO"] = "https"
32 Otherwise, you can configure your proxy (nginx) to send the
33 "X-Forwarded-Proto: https" header only for parts of the site that use
34 https.  For nginx, you can do it with the following line in appropriate
35 "location" blocks of your nginx config file:
37   proxy_set_header X-Forwarded-Proto https;
39 === Why are log messages from Unicorn are unformatted when using Rails?
41 Current versions of Rails unfortunately overrides the default Logger
42 formatter.
44 You can undo this behavior with the default logger in your Unicorn
45 config file:
47   Configurator::DEFAULTS[:logger].formatter = Logger::Formatter.new
49 Of course you can specify an entirely different logger as well
50 with the "logger" directive described by Unicorn::Configurator.
52 === Why am I getting "connection refused"/502 errors under high load?
54 Short answer: your application cannot keep up.
56 You can increase the size of the :backlog parameter if your kernel
57 supports a larger listen() queue, but keep in mind having a large listen
58 queue makes failover to a different machine more difficult.
60 See the TUNING and Unicorn::Configurator documents for more information
61 on :backlog-related topics.