public
Description: A very fast & simple Ruby web server
Homepage: http://code.macournoyer.com/thin/
Clone URL: git://github.com/macournoyer/thin.git
commit  cb878db6415df073cc8dc069422248e4c4913165
tree    2887af3eb977c044b037961d18867236ea072fb8
parent  f7451b3df8d0e367bc4a0fbbcefaff2a283e7af5
thin / README
100644 68 lines (50 sloc) 1.853 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
== Thin
Tiny, fast & funny HTTP server
 
Thin is a Ruby web server that glues together 3 of the best Ruby libraries in web history:
 * the Mongrel parser: the root of Mongrel speed and security
 * Event Machine: a network I/O library with extremely high scalability, performance and stability
 * Rack: a minimal interface between webservers and Ruby frameworks
Which makes it, with all humility, the most secure, stable, fast and extensible Ruby web server
bundled in an easy to use gem for your own pleasure.
 
=== Installation
For the latest stable version:
 
 sudo gem install thin
 
or using my mirror (might be more recent and unstable):
 
 sudo gem install thin --source http://code.macournoyer.com
 
Or from source:
 
 git clone git://github.com/macournoyer/thin.git
 cd thin
 rake install
 
=== Usage
A +thin+ script is offered to easily start your Rails application:
 
 cd to/your/rails/app
 thin start
 
But Thin is also usable through Rack +rackup+ command.
You need to setup a config.ru file and require thin in it:
  
 cat <<EOS
 require 'thin'
 
 app = proc do |env|
  [
    200,
    {
      'Content-Type' => 'text/html',
      'Content-Length' => '2'
    },
    ['hi']
  ]
 end
 
 run app
 EOS
 rackup -s thin
 
See example/config.ru for details and rackup -h
 
=== License
Ruby License, http://www.ruby-lang.org/en/LICENSE.txt.
 
=== Credits
The parser was stolen from Mongrel http://mongrel.rubyforge.org by Zed Shaw.
Mongrel Web Server (Mongrel) is copyrighted free software by Zed A. Shaw
<zedshaw at zedshaw dot com> You can redistribute it and/or modify it under
either the terms of the GPL.
 
Thin is copyright Marc-Andre Cournoyer <macournoyer@gmail.com>
 
Get help at http://groups.google.com/group/thin-ruby/
Report bugs at http://thin.lighthouseapp.com/projects/7212-thin
and major security issues directly to a team member (see COMMITTERS)