Begin writing HTTP request headers early to detect disconnected clients
[unicorn.git] / examples / unicorn.conf.rb
blob1f4c9c0370fec9ba1e8f93aa08049ebee314c41a
1 # Sample verbose configuration file for Unicorn (not Rack)
3 # This configuration file documents many features of Unicorn
4 # that may not be needed for some applications. See
5 # http://unicorn.bogomips.org/examples/unicorn.conf.minimal.rb
6 # for a much simpler configuration file.
8 # See http://unicorn.bogomips.org/Unicorn/Configurator.html for complete
9 # documentation.
11 # Use at least one worker per core if you're on a dedicated server,
12 # more will usually help for _short_ waits on databases/caches.
13 worker_processes 4
15 # Since Unicorn is never exposed to outside clients, it does not need to
16 # run on the standard HTTP port (80), there is no reason to start Unicorn
17 # as root unless it's from system init scripts.
18 # If running the master process as root and the workers as an unprivileged
19 # user, do this to switch euid/egid in the workers (also chowns logs):
20 # user "unprivileged_user", "unprivileged_group"
22 # Help ensure your application will always spawn in the symlinked
23 # "current" directory that Capistrano sets up.
24 working_directory "/path/to/app/current" # available in 0.94.0+
26 # listen on both a Unix domain socket and a TCP port,
27 # we use a shorter backlog for quicker failover when busy
28 listen "/tmp/.sock", :backlog => 64
29 listen 8080, :tcp_nopush => true
31 # nuke workers after 30 seconds instead of 60 seconds (the default)
32 timeout 30
34 # feel free to point this anywhere accessible on the filesystem
35 pid "/path/to/app/shared/pids/unicorn.pid"
37 # By default, the Unicorn logger will write to stderr.
38 # Additionally, ome applications/frameworks log to stderr or stdout,
39 # so prevent them from going to /dev/null when daemonized here:
40 stderr_path "/path/to/app/shared/log/unicorn.stderr.log"
41 stdout_path "/path/to/app/shared/log/unicorn.stdout.log"
43 # combine Ruby 2.0.0dev or REE with "preload_app true" for memory savings
44 # http://rubyenterpriseedition.com/faq.html#adapt_apps_for_cow
45 preload_app true
46 GC.respond_to?(:copy_on_write_friendly=) and
47   GC.copy_on_write_friendly = true
49 # Enable this flag to have unicorn test client connections by writing the
50 # beginning of the HTTP headers before calling the application.  This
51 # prevents calling the application for connections that have disconnected
52 # while queued.
53 check_client_connection false
55 before_fork do |server, worker|
56   # the following is highly recomended for Rails + "preload_app true"
57   # as there's no need for the master process to hold a connection
58   defined?(ActiveRecord::Base) and
59     ActiveRecord::Base.connection.disconnect!
61   # The following is only recommended for memory/DB-constrained
62   # installations.  It is not needed if your system can house
63   # twice as many worker_processes as you have configured.
64   #
65   # # This allows a new master process to incrementally
66   # # phase out the old master process with SIGTTOU to avoid a
67   # # thundering herd (especially in the "preload_app false" case)
68   # # when doing a transparent upgrade.  The last worker spawned
69   # # will then kill off the old master process with a SIGQUIT.
70   # old_pid = "#{server.config[:pid]}.oldbin"
71   # if old_pid != server.pid
72   #   begin
73   #     sig = (worker.nr + 1) >= server.worker_processes ? :QUIT : :TTOU
74   #     Process.kill(sig, File.read(old_pid).to_i)
75   #   rescue Errno::ENOENT, Errno::ESRCH
76   #   end
77   # end
78   #
79   # Throttle the master from forking too quickly by sleeping.  Due
80   # to the implementation of standard Unix signal handlers, this
81   # helps (but does not completely) prevent identical, repeated signals
82   # from being lost when the receiving process is busy.
83   # sleep 1
84 end
86 after_fork do |server, worker|
87   # per-process listener ports for debugging/admin/migrations
88   # addr = "127.0.0.1:#{9293 + worker.nr}"
89   # server.listen(addr, :tries => -1, :delay => 5, :tcp_nopush => true)
91   # the following is *required* for Rails + "preload_app true",
92   defined?(ActiveRecord::Base) and
93     ActiveRecord::Base.establish_connection
95   # if preload_app is true, then you may also want to check and
96   # restart any other shared sockets/descriptors such as Memcached,
97   # and Redis.  TokyoCabinet file handles are safe to reuse
98   # between any number of forked children (assuming your kernel
99   # correctly implements pread()/pwrite() system calls)