Sha256: f47ea8eb370e84a858a31917a9628418663ad2120ffbef31f33c52edb70da623

Contents?: true

Size: 1.21 KB

Versions: 16

Compression:

Stored size: 1.21 KB

Contents

# Use at least one worker per core if you're on a dedicated server,
# more will usually help for _short_ waits on databases/caches.
worker_processes 10

# Since Unicorn is never exposed to outside clients, it does not need to
# run on the standard HTTP port (80), there is no reason to start Unicorn
# as root unless it's from system init scripts.
# If running the master process as root and the workers as an unprivileged
# user, do this to switch euid/egid in the workers (also chowns logs):
# user "unprivileged_user", "unprivileged_group"

# Help ensure your application will always spawn in the symlinked
# "current" directory that Capistrano sets up.

# listen on both a Unix domain socket and a TCP port,
# we use a shorter backlog for quicker failover when busy
listen 8080, :tcp_nopush => true

# nuke workers after 30 seconds instead of 60 seconds (the default)
timeout 30

# feel free to point this anywhere accessible on the filesystem
pid "/tmp/unicorn.pid"

# By default, the Unicorn logger will write to stderr.
# Additionally, ome applications/frameworks log to stderr or stdout,
# so prevent them from going to /dev/null when daemonized here:
#stderr_path "log/unicorn.stderr.log"
#stdout_path "log/unicorn.stdout.log"

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
jubilee-1.1.2-java test/sinatra_app/unicorn.conf.rb
jubilee-1.1.0-java test/sinatra_app/unicorn.conf.rb
jubilee-1.1.0.rc3 test/sinatra_app/unicorn.conf.rb
jubilee-1.1.0.rc2 test/sinatra_app/unicorn.conf.rb
jubilee-1.1.0.rc1 test/sinatra_app/unicorn.conf.rb
jubilee-1.0.2 test/sinatra_app/unicorn.conf.rb
jubilee-1.0.1 test/sinatra_app/unicorn.conf.rb
jubilee-1.0.0 test/sinatra_app/unicorn.conf.rb
jubilee-1.0.0.beta1 test/sinatra_app/unicorn.conf.rb
jubilee-0.5.0 test/sinatra_app/unicorn.conf.rb
jubilee-0.4.1 test/sinatra_app/unicorn.conf.rb
jubilee-0.4.0 test/sinatra_app/unicorn.conf.rb
jubilee-0.2.2 test/sinatra_app/unicorn.conf.rb
jubilee-0.2.1 test/sinatra_app/unicorn.conf.rb
jubilee-0.2.0 test/sinatra_app/unicorn.conf.rb
jubilee-0.1.2 test/sinatra_app/unicorn.conf.rb