Guest User

Untitled

a guest
Jan 22nd, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. # The working directory, should be an absolute path.
  2. working_directory File.expand_path('../../', __FILE__)
  3.  
  4. # The amount of worker processes to start.
  5. worker_processes 2
  6.  
  7. # Preloads the application into memory.
  8. preload_app false
  9.  
  10. # proxy all calls from port 80 to this port.
  11. listen '/home/yorickpeterse/domains/yorickpeterse.com/tmp/unicorn.sock'
  12.  
  13. # The user and user group to use for the application.
  14. # user 'USER', 'GROUP'
  15.  
  16. timeout 30
  17.  
  18. # PID path relative to working_directory
  19. pid 'tmp/unicorn.pid'
Add Comment
Please, Sign In to add comment