about summary refs log tree commit homepage
path: root/examples
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2015-01-22 05:02:11 +0000
committerEric Wong <e@80x24.org>2015-02-04 19:33:53 +0000
commitfd937863d67d5a886df2a53f1736d643fbb91e4a (patch)
treed90e36492578823dc3c03a2a8bb5b7d928bb6cc2 /examples
parent6f0236fff6c1026562479a42228b30a5e5d95bba (diff)
downloadunicorn-fd937863d67d5a886df2a53f1736d643fbb91e4a.tar.gz
While it was technically interesting and fun to tunnel arbitrary
protocols over a semi-compliant Rack interface, nobody actually does
it (and anybody who does can look in our git history).  This was
from back in 2009 when this was one of the few servers that could
handle chunked uploads,were one of the few users of chunked uploads,
nowadays everyone does it! (or do they? :)

A newer version of exec_cgi.rb still lives on in the repository of
yet another horribly-named server, but there's no point in bloating
the installation footprint of somewhat popular server such as unicorn.
Diffstat (limited to 'examples')
-rw-r--r--examples/git.ru13
1 files changed, 0 insertions, 13 deletions
diff --git a/examples/git.ru b/examples/git.ru
deleted file mode 100644
index 59a31c9..0000000
--- a/examples/git.ru
+++ /dev/null
@@ -1,13 +0,0 @@
-#\-E none
-
-# See http://thread.gmane.org/gmane.comp.web.curl.general/10473/raw on
-# how to setup git for this.  A better version of the above patch was
-# accepted and committed on June 15, 2009, so you can pull the latest
-# curl CVS snapshot to try this out.
-require 'unicorn/app/inetd'
-
-use Rack::Lint
-use Rack::Chunked # important!
-run Unicorn::App::Inetd.new(
- *%w(git daemon --verbose --inetd --export-all --base-path=/home/ew/unicorn)
-)