mount grack to git, u can 'git clone http://localhost/git/xx.git' now

This commit is contained in:
Saito 2012-06-29 11:30:31 +08:00
parent 61b85aed59
commit 86807b8ecc
3 changed files with 42 additions and 22 deletions

View file

@ -17,11 +17,15 @@ git_host:
base_path: /home/git/repositories/ base_path: /home/git/repositories/
host: localhost host: localhost
git_user: git git_user: git
upload_pack: true
receive_pack: true
# port: 22 # port: 22
# Git settings # Git settings
# Use default values unless you understand it # Use default values unless you understand it
git: git:
path: /usr/bin/git
# Max size of git object like commit, in bytes # Max size of git object like commit, in bytes
# This value can be increased if you have a very large commits # This value can be increased if you have a very large commits
git_max_size: 5242880 # 5.megabytes git_max_size: 5242880 # 5.megabytes

View file

@ -0,0 +1,8 @@
module Grack
class Auth < Rack::Auth::Basic
def valid?
true
end
end
end

View file

@ -8,6 +8,14 @@ Gitlab::Application.routes.draw do
require 'resque/server' require 'resque/server'
mount Resque::Server.new, at: '/info/resque' mount Resque::Server.new, at: '/info/resque'
# Enable Grack support
mount Grack::Bundle.new({
git_path: GIT_OPTS['path'],
project_root: GIT_HOST['base_path'],
upload_pack: GIT_HOST['upload_pack'],
receive_pack: GIT_HOST['receive_pack']
}), at: '/git'
# #
# Help # Help
# #