Guest User

Untitled

a guest
Apr 25th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. # What ports/sockets to listen on, and what options for them.
  2. listen 4000, :tcp_nodelay => true, :backlog => 1024
  3.  
  4. # What the timeout for killing busy workers is, in seconds
  5. timeout 3600
  6.  
  7. # Whether the app should be pre-loaded
  8. preload_app false
  9.  
  10. # How many worker processes
  11. worker_processes 8
  12.  
  13. stderr_path "/tmp/unicorn.stderr.log"
  14. stdout_path "/tmp/unicorn.stdout.log"
Add Comment
Please, Sign In to add comment