Last active
December 18, 2015 02:39
-
-
Save neilmiddleton/5712976 to your computer and use it in GitHub Desktop.
Unicorn config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
worker_processes ENV["RAILS_ENV"] == 'production' ? 3 : 1 | |
timeout 30 | |
worker_processes ENV.fetch("WORKER_CONCURRENCY", 1).to_i | |
timeout ENV.fetch("UNICORN_TIMEOUT", 30).to_i |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment