CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Wed, 27 Aug 2025 14:30:54 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20081007212520
location: https://web.archive.org/web/20081007212520/https://github.com/raggi/thin/tree
server-timing: captures_list;dur=0.804659, exclusion.robots;dur=0.026954, exclusion.robots.policy;dur=0.012122, esindex;dur=0.012618, cdx.remote;dur=41.873090, LoadShardBlock;dur=302.287240, PetaboxLoader3.datanode;dur=71.002509, PetaboxLoader3.resolve;dur=136.266887
x-app-server: wwwb-app216
x-ts: 302
x-tr: 410
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=1
set-cookie: wb-p-SERVER=wwwb-app216; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Wed, 27 Aug 2025 14:30:56 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.6.26
x-archive-orig-date: Wed, 08 Oct 2008 04:25:20 GMT
x-archive-orig-transfer-encoding: chunked
x-archive-orig-connection: close
x-archive-orig-set-cookie: _github_sess=BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo%250ASGFzaHsABjoKQHVzZWR7AA%253D%253D--4d8802a39cf2ae2680fcdf915bd7f8472555cf65; domain=.github.com; path=/; expires=Wed, 01 Jan 2020 08:00:00 GMT
x-archive-orig-status: 200 OK
x-archive-orig-x-runtime: 1.84266
x-archive-orig-etag: "cfa0285d41391ecd429ade47e2411bee"
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-orig-x_commoncrawl_parsesegmentid: 4342
x-archive-orig-x_commoncrawl_originalurl: https://github.com/raggi/thin/tree
x-archive-orig-x_commoncrawl_urlfp: -7992029493348639048
x-archive-orig-x_commoncrawl_hostfp: -8801896244620822287
x-archive-orig-x_commoncrawl_signature: cfa0285d41391ecd429ade47e2411bee
x-archive-orig-x_commoncrawl_crawlno: 1
x-archive-orig-x_commoncrawl_fetchtimestamp: 1223439920418
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
x-archive-orig-content-encoding: gzip
memento-datetime: Tue, 07 Oct 2008 21:25:20 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Tue, 07 Oct 2008 21:25:20 GMT", ; rel="memento"; datetime="Tue, 07 Oct 2008 21:25:20 GMT", ; rel="last memento"; datetime="Tue, 07 Oct 2008 21:25:20 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 1224041945345_47-c/1224042050386_26.arc.gz
server-timing: captures_list;dur=0.857232, exclusion.robots;dur=0.031693, exclusion.robots.policy;dur=0.012120, esindex;dur=0.015903, cdx.remote;dur=73.064040, LoadShardBlock;dur=159.733988, PetaboxLoader3.datanode;dur=160.157708, PetaboxLoader3.resolve;dur=987.958115, load_resource;dur=1072.624993
x-app-server: wwwb-app216
x-ts: 200
x-tr: 1405
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
raggi's thin at master — GitHub
This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (

This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (

Fork of macournoyer/thin | |
Description: | A very fast & simple Ruby web server |
Homepage: | https://code.macournoyer.com/thin/ |
Clone URL: |
git://github.com/raggi/thin.git
Give this clone URL to anyone.
git clone git://github.com/raggi/thin.git
|
thin /
README
== 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. Site: https://code.macournoyer.com/thin/ Group: https://groups.google.com/group/thin-ruby/topics Bugs: https://thin.lighthouseapp.com/projects/7212-thin Code: https://github.com/macournoyer/thin IRC: #thin on freenode === 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 https://code.macournoyer.com Or from source: git clone git://github.com/macournoyer/thin.git cd thin rake install To use Thin with UNIX domain sockets you need EventMachine 0.11.0 from my gem server: gem install eventmachine --source https://code.macournoyer.com === Usage A +thin+ script offers an easy way to start your Rails application: cd to/your/rails/app thin start But Thin is also usable with a Rack config file. You need to setup a config.ru file and pass it to the thin script: cat config.ru app = proc do |env| [ 200, { 'Content-Type' => 'text/html', 'Content-Length' => '2' }, ['hi'] ] end run app thin start -R config.ru See example directory for more samples and run 'thin -h' for usage. === License Ruby License, https://www.ruby-lang.org/en/LICENSE.txt. === Credits The parser was stolen from Mongrel https://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 https://groups.google.com/group/thin-ruby/ Report bugs at https://thin.lighthouseapp.com/projects/7212-thin and major security issues directly to a team member (see COMMITTERS)
This feature is coming soon. Sit tight!