about summary refs log tree commit homepage
path: root/examples/git.ru
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-07-01 15:16:49 -0700
committerEric Wong <normalperson@yhbt.net>2009-07-01 15:16:49 -0700
commit90c0e4666185f29d3484c12ea6d451fcac528376 (patch)
treeed743318fd0a1e4b75c7afc5f98ea0c2343f08d1 /examples/git.ru
parent06bf73975864b8e16ef1ee977f8424a0e5517fd6 (diff)
downloadunicorn-90c0e4666185f29d3484c12ea6d451fcac528376.tar.gz
Now that upstream curl supports this functionality, there's
no reason to duplicate it here as an example.
Diffstat (limited to 'examples/git.ru')
-rw-r--r--examples/git.ru8
1 files changed, 6 insertions, 2 deletions
diff --git a/examples/git.ru b/examples/git.ru
index 3762d3d..59a31c9 100644
--- a/examples/git.ru
+++ b/examples/git.ru
@@ -1,9 +1,13 @@
 #\-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
-# run Unicorn::App::Inetd.new('tee', '/tmp/tee.out')
+use Rack::Chunked # important!
 run Unicorn::App::Inetd.new(
  *%w(git daemon --verbose --inetd --export-all --base-path=/home/ew/unicorn)
 )