diff options
| author | drebs <drebs@riseup.net> | 2011-03-11 14:53:39 -0300 |
|---|---|---|
| committer | drebs <drebs@riseup.net> | 2011-03-11 14:53:39 -0300 |
| commit | 01b2048dbf02ac726dabde5e846b9d6ac9aff0e6 (patch) | |
| tree | 28f13f07a483a73ffcbfb25e4aba0c40f3d656bb /templates/apache/vhosts/git.erb | |
| download | puppet-bootstrap-01b2048dbf02ac726dabde5e846b9d6ac9aff0e6.tar.gz puppet-bootstrap-01b2048dbf02ac726dabde5e846b9d6ac9aff0e6.tar.bz2 | |
initial recommit
Diffstat (limited to 'templates/apache/vhosts/git.erb')
| -rw-r--r-- | templates/apache/vhosts/git.erb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/templates/apache/vhosts/git.erb b/templates/apache/vhosts/git.erb new file mode 100644 index 0000000..25aecd1 --- /dev/null +++ b/templates/apache/vhosts/git.erb @@ -0,0 +1,20 @@ +# begin vhost for git +<VirtualHost *:80> + # Recipe based on http://josephspiros.com/2009/07/26/configuring-gitweb-for-apache-on-debian + + ServerName git.<%= domain %> + SetEnv GITWEB_CONFIG /etc/gitweb.conf + HeaderName HEADER + DocumentRoot /var/git/repositories + Alias /gitweb.css /usr/share/gitweb/gitweb.css + Alias /git-favicon.png /usr/share/gitweb/git-favicon.png + Alias /git-logo.png /usr/share/gitweb/git-logo.png + + ScriptAlias /gitweb /usr/lib/cgi-bin/gitweb.cgi + RewriteEngine on + + # Rewrite all other paths that aren't git repo internals to gitweb + RewriteRule ^/$ /gitweb [PT] + RewriteRule ^/(.*\.git/(?!/?(HEAD|info|objects|refs)).*)?$ /gitweb%{REQUEST_URI} [L,PT] +</VirtualHost> +# end vhost for git |
