gemspec: enable licenses metadata attribute
[unicorn.git] / examples / unicorn.conf.minimal.rb
blob2a47910631c5fb45751d3470e99d82d3c88223e3
1 # Minimal sample configuration file for Unicorn (not Rack) when used
2 # with daemonization (unicorn -D) started in your working directory.
4 # See http://unicorn.bogomips.org/Unicorn/Configurator.html for complete
5 # documentation.
6 # See also http://unicorn.bogomips.org/examples/unicorn.conf.rb for
7 # a more verbose configuration using more features.
9 listen 2007 # by default Unicorn listens on port 8080
10 worker_processes 2 # this should be >= nr_cpus
11 pid "/path/to/app/shared/pids/unicorn.pid"
12 stderr_path "/path/to/app/shared/log/unicorn.log"
13 stdout_path "/path/to/app/shared/log/unicorn.log"