Skip to content

Instantly share code, notes, and snippets.

@wdog
Forked from cdwilson/git
Created October 16, 2015 13:49
Show Gist options
  • Save wdog/afb5c87da95000b28a3c to your computer and use it in GitHub Desktop.
Save wdog/afb5c87da95000b28a3c to your computer and use it in GitHub Desktop.
ubuntu apache config for git virtual host - /etc/apache2/conf.d/git
<VirtualHost *:80>
ServerName git.server
ServerAdmin webmaster@git.server
DocumentRoot /usr/share/gitweb
<Directory /usr/share/gitweb>
Options FollowSymLinks ExecCGI
AddHandler cgi-script cgi
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^.* /index.cgi/$0 [L,PT]
</Directory>
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment