Github Post Receive Url
- From:
- Matt Davies
- Date:
- 2010-01-12 @ 15:17
Hello everyone
I'm using integrity 2.2.3
my config.ru looks like this
require "init"
use Rack::Auth::Basic do |user, pass|
user == "admin" && pass == "password"
end
run Integrity.app
the relevant bit of my init.rb looks like this
c.push "SECRET"
my post receive URL in github admin looks like this
http://admin:password@domain.com/project/push
my project URI in integrity is
git@github.com:username/project
my access log is giving me
"POST /project/push HTTP/1.1" 404 2094 "-" "-"
I'm not setting something obvious, can anyone point my error out for me?
thanks