diff options
Diffstat (limited to '')
-rw-r--r-- | debian/apache2/gitweb.conf | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/debian/apache2/gitweb.conf b/debian/apache2/gitweb.conf new file mode 100644 index 0000000..cb914bc --- /dev/null +++ b/debian/apache2/gitweb.conf @@ -0,0 +1,19 @@ +<IfModule mod_alias.c> + <IfModule mod_mime.c> + <IfModule mod_cgi.c> + Define ENABLE_GITWEB + </IfModule> + <IfModule mod_cgid.c> + Define ENABLE_GITWEB + </IfModule> + </IfModule> +</IfModule> + +<IfDefine ENABLE_GITWEB> + Alias /gitweb /usr/share/gitweb + + <Directory /usr/share/gitweb> + Options +FollowSymLinks +ExecCGI + AddHandler cgi-script .cgi + </Directory> +</IfDefine> |