MonPote / git-http-backend

A dead simple, insecure git-over-http server using nginx

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

A dead simple git smart-http server using nginx as a frontend. No authentication, no SSL, push is free-for-all.

caveat emptor this is not intended for production use

Usage:

docker run -d -p 4080:80 -v /path/to/host/gitdir:/git ynohat/git-http-backend

Unauthenticated push will not work unless you enable it in repositories:

cd /path/to/host/gitdir
git init --bare test.git
cd test.git
git config http.receivepack true

Repos will then be accessible at http://localhost:4080/git/<repo>.git.

About

A dead simple, insecure git-over-http server using nginx

License:MIT License


Languages

Language:Dockerfile 100.0%