GithubHelp home page GithubHelp logo

apache-gitfileserver's Introduction

Apache::GitFileServer

mod_perl2 module to serve files from git repositories.

SYNOPSIS

This module allows to serve file directly from git repositories to browsers. Its main purpose is to easily publish files using git.

Features

  • Reply only to GET and HEAD requests; deny other methods with a 405 (Bad Method) response.

  • Set Content-Length.

  • Set Content-Type based on file extension, using File::MimeInfo.

  • Allow caching by setting ETag in response and properly handling If-None-Match header in requests.

  • Do not allow exploring: do not list repositories, references nor tree content.

INSTALLATION

This module obviously needs Apache2, mod_perl2 and git binaries. It also uses System::Sub and File::MimeInfo.

On Debian Wheezy, you should be able to install them with these commands:

aptitude install libapache2-mod-perl2 git libfile-mimeinfo-perl cpan
cpan install System::Sub

Install this module in one of mod_perl2 @INC directories.

CONFIGURATION

Here is a sample configuration with all the configuration parameters.

# Load the module
PerlLoadModule Apache::GitFileServer

# Serve files from repositories
<Location /pages>
        SetHandler modperl
        PerlResponseHandler Apache::GitFileServer
        
        # Where does the bare repositories live ?
        GitRepositoryRoot      /var/lib/git
        
        # Suffixes repository name with "-pages", e.g. /pages/myrepo => /var/lib/git/myrepo-pages
        # Default: -pages
        # GitRepositoryDirSuffix -pages
        
        # Redirect /pages/myrepo to /pages/myrepo/master
        # Default: master
        # GitDefaultBranch       master
        
        # Redirect /pages/myrepo/anyref to /pages/myrepo/anyref/index.html
        # GitDefaultIndex       index.html
        # GitDefaultIndex        index.html
</Location>

CAVEATS

Even though this module should not consume much ressources, it has not been optimized for performance. It executes "git cat-file" at least once per request and executes a second time to actually serve the file content.

LICENSE

(c) 2013 Adirelle <[email protected]>

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.

apache-gitfileserver's People

Contributors

adirelle avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.