about summary refs log tree commit homepage
path: root/lib/unicorn/http_server.rb
DateCommit message (Expand)
2024-03-31treewide: future-proof frozen_string_literal changes
2024-01-15kill off remaining kgio uses
2024-01-15remove kgio from all read(2) and write(2) wrappers
2023-06-05LISTEN_FDS-inherited sockets are immortal across SIGHUP
2023-06-05drop redundant IO#close_on_exec=false calls
2023-06-05Support Rack 3 and fix tests on Rack 3
2023-06-05http_server: remove close_sockets_on_exec
2022-10-04http_server: detect disk-full when writing PID file
2021-10-04use EPOLLEXCLUSIVE on Linux 4.5+
2021-10-04worker_loop: get rid of select() avoidance hack
2021-10-04http_server: get rid of Process.ppid check
2021-09-26drop Ruby 1.9.3 support, require 2.0+ for now
2021-03-13Allocate a new request for each client
2020-12-09Add rack.after_reply functionality
2020-07-16Add early hints support
2020-04-16prevent single listener from monopolizing a worker
2020-01-20doc: s/bogomips.org/yhbt.net/g
2018-10-18doc: update more URLs to use HTTPS and avoid redirects
2018-09-21Support default_middleware configuration option
2018-07-23use IO#wait instead of kgio_wait_readable
2018-07-23remove random seed reset atfork
2018-05-01quiet some mismatched indentation warnings
2017-12-16avoid reusing env on hijack
2017-04-08reduce method calls with String#start_with?
2017-03-23Merge remote-tracking branch 'origin/worker_exec'
2017-03-23http_server: initialize @pid ivar
2017-03-13Don't pass a block for fork when forking workers worker_exec
2017-03-10Add worker_exec configuration option
2017-02-23Add after_worker_ready configuration option chroot
2017-02-21Add after_worker_exit configuration option
2016-10-25relocate website to https://bogomips.org/unicorn/
2016-01-07various documentation updates
2015-11-01golf down conditional for socket activation
2015-10-27sd_listen_fds emulation cleanup
2015-07-15doc: remove references to old servers
2015-07-05emulate sd_listen_fds for systemd support
2015-06-27apply TCP socket options on inherited sockets
2015-06-26doc: update some invalid URLs
2015-06-10ensure body is closed during hijack
2015-06-04http_server: remove a few more accessors and constants
2015-05-20process SIGWINCH unless stdin is a TTY
2015-05-07favor kgio_wait_readable for single FD over select
2015-04-07favor more string literals for cold call sites
2015-03-01reduce and localize constant string use
2015-02-18explain 11 byte magic number for self-pipe
2015-02-12http_server: favor ivars over constants
2015-02-06favor "a.b(&:c)" form over "a.b { |x| x.c }"
2015-02-06doc: update support status for Ruby versions
2015-02-05favor IO#close_on_exec= over fcntl in 1.9+
2015-02-05remove 1.8, <= 1.9.1 fallback for missing IO#autoclose=