doc: s/bogomips.org/yhbt.net/g
[unicorn.git] / examples / unicorn.conf.minimal.rb
blob46fd634289fa7ce99701330e1e9b912c2166026b
1 # Minimal sample configuration file for Unicorn (not Rack) when used
2 # with daemonization (unicorn -D) started in your working directory.
4 # See https://yhbt.net/unicorn/Unicorn/Configurator.html for complete
5 # documentation.
6 # See also https://yhbt.net/unicorn/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"