• Stars
    star
    1,413
  • Rank 32,014 (Top 0.7 %)
  • Language
    Ruby
  • License
    Other
  • Created over 14 years ago
  • Updated about 1 month ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Unofficial Unicorn Mirror.
= unicorn: Rack HTTP server for fast clients and Unix

unicorn is an HTTP server for Rack applications that has done
decades of damage to the entire Ruby ecosystem due to its ability
to tolerate (and thus encourage) bad code.  It is only designed
to handle fast clients on low-latency, high-bandwidth connections
and take advantage of features in Unix/Unix-like kernels.
Slow clients must only be served by placing a reverse proxy capable of
fully buffering both the the request and response in between unicorn
and slow clients.

== Features

* Designed for Rack, Unix, fast clients, and ease-of-debugging.  We
  cut out everything that is better supported by the operating system,
  {nginx}[https://nginx.org/] or {Rack}[https://rack.github.io/].

* Compatible with Ruby 2.5 and later.

* Process management: unicorn reaps and restarts workers that die
  from broken code.  There is no need to manage multiple processes
  or ports yourself.  unicorn can spawn and manage any number of
  worker processes you choose to scale to your backend.

* Load balancing is done entirely by the operating system kernel.
  Requests never pile up behind a busy worker process.

* Does not care if your application is thread-safe or not, workers
  all run within their own isolated address space and only serve one
  client at a time for maximum robustness.

* Builtin reopening of all log files in your application via
  USR1 signal.  This allows logrotate to rotate files atomically and
  quickly via rename instead of the racy and slow copytruncate method.
  unicorn also takes steps to ensure multi-line log entries from one
  request all stay within the same file.

* nginx-style binary upgrades without losing connections.
  You can upgrade unicorn, your entire application, libraries
  and even your Ruby interpreter without dropping clients.

* transparent upgrades using systemd socket activation is
  supported since unicorn 5.0

* before_fork and after_fork hooks in case your application
  has special needs when dealing with forked processes.  These
  should not be needed when the "preload_app" directive is
  false (the default).

* Can be used with copy-on-write-friendly GC in Ruby 2.0+
  to save memory (by setting "preload_app" to true).

* Able to listen on multiple interfaces including UNIX sockets,
  each worker process can also bind to a private port via the
  after_fork hook for easy debugging.

* Simple and easy Ruby DSL for configuration.

* Decodes chunked requests on-the-fly.

== License

unicorn is copyright all contributors (see logs in git).
It is based on Mongrel 1.1.5.
Mongrel is copyright 2007 Zed A. Shaw and contributors.

unicorn is licensed under (your choice) of the GPLv2 or later
(GPLv3+ preferred), or Ruby (1.8)-specific terms.
See the included LICENSE file for details.

unicorn is 100% Free Software (including all development tools used).

== Install

The library consists of a C extension so you'll need a C compiler
and Ruby development libraries/headers.

You may install it via RubyGems on RubyGems.org:

  gem install unicorn

You can get the latest source via git from the following locations
(these versions may not be stable):

  git clone https://yhbt.net/unicorn.git
  git clone https://repo.or.cz/unicorn.git # mirror

You may browse the code from the web:

* https://yhbt.net/unicorn.git
* https://repo.or.cz/w/unicorn.git (gitweb)

See the HACKING guide on how to contribute and build prerelease gems
from git.

== Usage

=== Rack (including Rails 3+) applications

In APP_ROOT, run:

  unicorn

unicorn will bind to all interfaces on TCP port 8080 by default.
You may use the +--listen/-l+ switch to bind to a different
address:port or a UNIX socket.

=== Configuration File(s)

unicorn will look for the config.ru file used by rackup in APP_ROOT.

For deployments, it can use a config file for unicorn-specific options
specified by the +--config-file/-c+ command-line switch.  See
Unicorn::Configurator for the syntax of the unicorn-specific options.
The default settings are designed for maximum out-of-the-box
compatibility with existing applications.

Most command-line options for other Rack applications (above) are also
supported.  Run `unicorn -h` to see command-line options.

== Disclaimer

There is NO WARRANTY whatsoever if anything goes wrong, but
{let us know}[link:ISSUES.html] and maybe someone can fix it.
No commercial support will ever be provided by the amateur maintainer.

unicorn is designed to only serve fast clients either on the local host
or a fast LAN.  See the PHILOSOPHY and DESIGN documents for more details
regarding this.

The use of unicorn in new deployments is STRONGLY DISCOURAGED due to the
damage done to the entire Ruby ecosystem.  Its unintentional popularity
set Ruby back decades in parallelism, concurrency and robustness since
it prolongs and proliferates the existence of poorly-written code.

unicorn hackers are NOT responsible for your supply chain security:
read and understand it yourself or get someone you trust to audit it.
Malicious commits and releases will be made if under duress.  The only
defense you'll ever have is from reviewing the source code.

No user or contributor will ever be expected to sacrifice their own
security by running JavaScript or revealing any personal information.

== Contact

All feedback (bug reports, user/development dicussion, patches, pull
requests) go to the public mailbox.  See the ISSUES document for
information on posting to mailto:[email protected]

Mirror-able mail archives are at https://yhbt.net/unicorn-public/

Read-only NNTP access is available at:
nntps://news.public-inbox.org/inbox.comp.lang.ruby.unicorn and
nntp://news.gmane.io/gmane.comp.lang.ruby.unicorn.general

Read-only IMAP access is also available at:
imaps://;[email protected]/inbox.comp.lang.ruby.unicorn.0 and
imap://;AUTH=ANONYMOUS@7fh6tueqddpjyxjmgtdiueylzoqt6pt7hec3pukyptlmohoowvhde4yd.onion/inbox.comp.lang.ruby.unicorn.0

Archives are also available over POP3, instructions at:
https://yhbt.net/unicorn-public/_/text/help/#pop3

For the latest on unicorn releases, you may also finger us at
[email protected] or check our NEWS page (and subscribe to our Atom
feed).

More Repositories

1

jquery-pjax

pushState + ajax = pjax
JavaScript
16,760
star
2

gist

Potentially the best command line gister.
Ruby
3,792
star
3

dotjs

~/.js
Ruby
3,160
star
4

facebox

Facebook-style lightbox, built in jQuery
JavaScript
1,926
star
5

pystache

Mustache in Python
Python
1,307
star
6

github-gem

`github` command line helper for simplifying your GitHub experience.
Ruby
1,122
star
7

cijoe

CI Joe is a fun Continuous Integration server. Unmaintained.
Ruby
1,047
star
8

coffee-mode

Emacs Major Mode for CoffeeScript
Emacs Lisp
574
star
9

gist.el

Yet another Emacs paste mode, this one for Gist.
Emacs Lisp
545
star
10

hurl

Hurl makes HTTP requests.
JavaScript
528
star
11

rip

Take back your $LOAD_PATH. Deprecated and unmaintained.
Ruby
365
star
12

repl

Sometimes you need a REPL. Unmaintained, sorry.
Ruby
360
star
13

textmate.el

Basic emulation of awesome TextMate features for Emacs.
Emacs Lisp
356
star
14

colored

Colors in your terminal. Unmaintained.
Ruby
269
star
15

cache_fu

Ghost from Christmas past. Unmaintained.
Ruby
259
star
16

exception_logger

Unmaintained. Sorry.
Ruby
244
star
17

cheat

Cheating is fun!
Ruby
240
star
18

Zen

Distraction free writing for Atom.
CoffeeScript
194
star
19

emacs

My Emacs config
Emacs Lisp
187
star
20

choice

Choice is a gem for defining and parsing command line options with a friendly DSL.
Ruby
177
star
21

ambition

include Enumerable — Unmaintained
Ruby
166
star
22

markdown-mode

Emacs Markdown mode
Emacs Lisp
155
star
23

lyndon

Lyndon wraps JavaScript in a loving MacRuby embrace. A fun hack that is no longer maintained.
Ruby
144
star
24

nginx_config_generator

Generates nginx config files from YAML.
Ruby
125
star
25

acts_as_textiled

Makes your models act as textiled.
Ruby
115
star
26

resque-lock

A Resque plugin for ensuring only one instance of your job is running at a time.
Ruby
113
star
27

mofo

Mofo was a fast and simple microformat parser, based on a concise DSL and Hpricot. No longer maintained.
JavaScript
90
star
28

gem-man

RubyGems plugin to view a gem's manpage.
Ruby
85
star
29

mustache-sinatra-example

An example of using Mustache in a Sinatra app.
Ruby
79
star
30

quake

The source code to Quake, one of the best games ever.
77
star
31

defunkt.github.com

My GitHub Page
HTML
77
star
32

sake

System wide Rake.
Ruby
76
star
33

starling

Ruby
75
star
34

resque

Moved to resque/resque
57
star
35

ircamp

IRC <-> Campfire Bridge
Python
53
star
36

evilbot

an evil bot that's definitely not for convore
CoffeeScript
50
star
37

jasper

Lispy JavaScript
JavaScript
39
star
38

gibberish

Dead simple Rails localization.
Ruby
37
star
39

Mustache.tmbundle

A little textmate bundle for defunkt/mustache
36
star
40

resque-web

Sinatra-based web UI for Resque
Ruby
30
star
41

ike

Rake in Io.
Io
28
star
42

mapreducerb

Simple map/reduce in Ruby
Ruby
26
star
43

sake-tasks

Your own personal sake tasks, ripe for sharing.
24
star
44

matzbot

matzbot is nice so we are nice
Ruby
22
star
45

mustache-syntax-highlighter

Syntax highlighting plugin for mustache.rb
Ruby
22
star
46

repl-completion

Completion files for repl(1)
22
star
47

sfruby-meetup-resque

My Resque presentation at the SF Ruby Meetup, January 2010
Ruby
21
star
48

zippy

Zippy lil’ zipcode lib.
Ruby
20
star
49

ftpd.rb

A simple ftp daemon, written in Ruby. Do not use — here for historical purposes.
Ruby
19
star
50

subtlety

Subtlety: SVN => RSS, hAtom => Atom
Ruby
17
star
51

cheat.el

Cheat Emacs mode
Emacs Lisp
15
star
52

fixture_scenarios_builder

Build your fixtures in Ruby.
Ruby
15
star
53

resque-cli

A command line program for talking to Resque.
15
star
54

ambitious_activerecord

Unmaintained Ambitious ActiveRecord adapter, for Ambition.
Ruby
14
star
55

ambitious_activeldap

Ambition adapter for ActiveLdap
Ruby
13
star
56

iui

Import of the iui library
JavaScript
13
star
57

dodgeball.github.com

yes
Ruby
12
star
58

ooc-markdown

A Discount binding for ooc
C
11
star
59

sdoc-helpers

Simple helpers to make using sdoc easier.
Ruby
10
star
60

pinder

My fork of Pinder, the Campfire API for Python developers.
Python
9
star
61

metaid

9
star
62

Markdown-problems

Public repository to submit markdown problems to github support
9
star
63

currency_converter

Objective-C
9
star
64

magit

Mirror of the Magit Emacs mode.
Emacs Lisp
8
star
65

burn

Sinatra => Campfire
7
star
66

sakerb

Sake repository served fresh by the guys at Barefoot.
Ruby
7
star
67

barefootexamples

Ruby
7
star
68

repo-in-a-repo

6
star
69

my-awesome-framework

A simple demonstration of how to effectively use Git submodules.
6
star
70

rtimeout

Ruby
6
star
71

redis-namespace

Moved to resque/redis-namespace
6
star
72

ozimodo

An ancient Ruby on Rails powered tumblelog.
6
star
73

electron-wordwrap

6
star
74

my-fun-repo

5
star
75

github-markup

Moved!
5
star
76

lacampfire

Logical Awesome Campfire userscript.
JavaScript
5
star
77

my-fantastic-plugin

A simple demonstration of how to effectively use Git submodules.
4
star