CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Thu, 04 Sep 2025 02:52:58 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20090521095704
location: https://web.archive.org/web/20090521095704/https://github.com/raggi/thin/tree/async_for_rack
server-timing: captures_list;dur=0.949915, exclusion.robots;dur=0.028528, exclusion.robots.policy;dur=0.012700, esindex;dur=0.016708, cdx.remote;dur=20.932280, LoadShardBlock;dur=272.256959, PetaboxLoader3.datanode;dur=67.958135, PetaboxLoader3.resolve;dur=31.567521
x-app-server: wwwb-app213
x-ts: 302
x-tr: 341
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app213; 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: Thu, 04 Sep 2025 02:52:58 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.6.26
x-archive-orig-date: Thu, 21 May 2009 09:57:04 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-x-runtime: 453ms
x-archive-orig-etag: "8ead9562055814b18fe3373ae933b3b8"
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-orig-content-length: 27105
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Thu, 21 May 2009 09:57:04 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Thu, 21 May 2009 09:57:04 GMT", ; rel="memento"; datetime="Thu, 21 May 2009 09:57:04 GMT", ; rel="last memento"; datetime="Thu, 21 May 2009 09:57:04 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: 51_9_20090521090840_crawl103_IndexOnly-c/51_9_20090521095615_crawl101.arc.gz
server-timing: captures_list;dur=0.716567, exclusion.robots;dur=0.024248, exclusion.robots.policy;dur=0.010598, esindex;dur=0.013810, cdx.remote;dur=17.985217, LoadShardBlock;dur=399.701685, PetaboxLoader3.datanode;dur=219.823383, PetaboxLoader3.resolve;dur=257.822551, load_resource;dur=115.987998
x-app-server: wwwb-app213
x-ts: 200
x-tr: 626
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 async_for_rack - 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: | async stuff is now merged into upstream, no need for here anymore |
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 /
== 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!