CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Thu, 07 Aug 2025 08:33:44 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100214003110
location: https://web.archive.org/web/20100214003110/https://github.com/rtomayko/thin
server-timing: captures_list;dur=0.936975, exclusion.robots;dur=0.035424, exclusion.robots.policy;dur=0.021553, esindex;dur=0.027405, cdx.remote;dur=140.421012, LoadShardBlock;dur=662.340645, PetaboxLoader3.datanode;dur=164.427494, PetaboxLoader3.resolve;dur=293.024646
x-app-server: wwwb-app201
x-ts: 302
x-tr: 839
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=1
set-cookie: wb-p-SERVER=wwwb-app201; 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, 07 Aug 2025 08:33:45 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Sun, 14 Feb 2010 00:31:10 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "e0108526deaa517301524ea51e42490c"
x-archive-orig-x-runtime: 87ms
x-archive-orig-content-length: 31909
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Sun, 14 Feb 2010 00:31:10 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Sun, 14 Feb 2010 00:31:10 GMT", ; rel="memento"; datetime="Sun, 14 Feb 2010 00:31:10 GMT", ; rel="last memento"; datetime="Sun, 14 Feb 2010 00:31:10 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: TLA-20100213232338-00790-00798-ia360906-20100214094536-00000-c/TLA-20100214000200-00791-ia360906.us.archive.org.warc.gz
server-timing: captures_list;dur=0.472983, exclusion.robots;dur=0.037545, exclusion.robots.policy;dur=0.015075, esindex;dur=0.008749, cdx.remote;dur=6.320219, LoadShardBlock;dur=215.747559, PetaboxLoader3.datanode;dur=146.983575, PetaboxLoader3.resolve;dur=123.678327, load_resource;dur=119.174717
x-app-server: wwwb-app201
x-ts: 200
x-tr: 404
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
rtomayko's thin at master - GitHub
This service is courtesy of Pledgie.
rtomayko / thin forked from macournoyer/thin
- Source
- Commits
- Network (34)
- Issues (0)
- Downloads (10)
- Wiki (1)
- Graphs
-
Branch:
master
click here to add a description
click here to add a homepage
Sending Request…
Enable Donations
Pledgie Donations
Once activated, we'll place the following badge in your repository's detail box:
A very fast & simple Ruby web server — Read more
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)