about summary refs log tree commit homepage
path: root/lib/unicorn.rb
DateCommit message (Expand)
2009-04-15worker_loop cleanups, var golf, and yak-shaving
2009-04-15before_commit and before_exec can never be nil/false
2009-04-14s/rotating/reopening/g in log messages
2009-04-14Explicitly trap SIGINT/SIGTERM again
2009-04-13Fix SIGINT/SIGTERM handling (broken in 0.5.0)
2009-04-13Expose worker to {before,after}_fork hooks
2009-04-13Remove unnecessary local variables in process_client
2009-04-13small cleanups in signal handling and worker init
2009-04-12Don't bother restoring ENV or umask across reexec
2009-04-12Remove unnecessary sync assignment
2009-04-12Save one fcntl() syscall on every request
2009-04-11Remove _all_ non-POSIX socket options
2009-04-10listen backlog, sndbuf, rcvbuf are always changeable
2009-04-10Restore unlinked UNIX sockets on SIGHUP
2009-04-10config: handle listener unbind/replace in config file
2009-04-10close listeners when removing them from our array
2009-04-07cleanup some log messages
2009-04-02Use File.basename instead of a regexp
2009-04-02More descriptive process titles
2009-04-01Close std{err,out} redirection targets
2009-04-01FD_CLOEXEC all non-listen descriptors before exec
2009-04-01All IOs created in workers have FD_CLOEXEC set
2009-04-01Remove set_cloexec wrapper and require FD_CLOEXEC
2009-03-31Use {read,write}_nonblock on the pipe
2009-03-29Fix default listener setup
2009-03-29Avoid having two pid files pointing to the same pid
2009-03-29configurator: per-listener backlog, {rcv,snd}buf config
2009-03-27Always try to send a valid HTTP response back
2009-03-27No need to disable luserspace buffering on client socket
2009-03-27style: symbols instead of strings for signal names
2009-03-27Deferred log rotation in workers
2009-03-26Don't allow failed log rotation to to break app
2009-03-25Socket: add {snd,rcv}buf opts to bind_listen
2009-03-22Don't bother unlinking UNIX sockets
2009-03-21Simplify code for sleeping/waking up the master
2009-03-21Rotate master logs before workers.
2009-03-20Process management cleanups
2009-03-19Trap WINCH to QUIT children without respawning
2009-03-18Add signal queueing for test reliability
2009-03-18gracefully die if working dir is invalid at fork
2009-03-04Add before_exec hook
2009-03-04Remove "directory" config option
2009-03-04Ensure reopened std{out,err}_paths can be rotated
2009-03-03Raise ArgumentError if listeners are empty
2009-03-03fix typo (DEFAULT_LISTENER => DEFAULT_LISTEN)
2009-03-03Allow stderr_path and stdout_path to be set in the config
2009-03-03Load the app _after_ forking workers by default
2009-03-03Handle Errno::EINTR during IO.select in workers
2009-03-03Make USR1 rotate log files by default
2009-03-03Add Unicorn::Util for a reopen_logs method