Paste
Pasted as Ruby by registered user omemunama ( 10 years ago )
# set path to application
shared_dir = "home/kvs/app001"
# Set unicorn options
worker_processes 2
preload_app true
timeout 30
# Set up socket location
listen "/sockets/unicorn.sock", :backlog => 64
# Logging
stderr_path "/log/unicorn.stderr.log"
stdout_path "/log/unicorn.stdout.log"
# Set master PID location
pid "/pids/unicorn.pid"
Revise this Paste