aboutsummaryrefslogtreecommitdiff
path: root/templates/apache/vhosts/cgit.erb
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2016-06-18 14:21:18 -0300
committerSilvio Rhatto <rhatto@riseup.net>2016-06-18 14:21:18 -0300
commit48f24914d39228fa68f5c540c80f285f61de1e17 (patch)
treee801695d7e760d3b2c6250ea2bcd7b4751c85d44 /templates/apache/vhosts/cgit.erb
parent319bdcb9e0135f3cbac8a3d8fab29e26c6d1b8c3 (diff)
downloadpuppet-bootstrap-48f24914d39228fa68f5c540c80f285f61de1e17.tar.gz
puppet-bootstrap-48f24914d39228fa68f5c540c80f285f61de1e17.tar.bz2
Removes templates
Diffstat (limited to 'templates/apache/vhosts/cgit.erb')
-rw-r--r--templates/apache/vhosts/cgit.erb30
1 files changed, 0 insertions, 30 deletions
diff --git a/templates/apache/vhosts/cgit.erb b/templates/apache/vhosts/cgit.erb
deleted file mode 100644
index d2d393d..0000000
--- a/templates/apache/vhosts/cgit.erb
+++ /dev/null
@@ -1,30 +0,0 @@
-# begin vhost for cgit
-<VirtualHost *:80>
- ServerName git.<%= domain %>
- ServerAlias gitweb.<%= domain %>
-
- ServerSignature Off
-
- Alias /cgit.css /var/www/htdocs/cgit/cgit.css
- Alias /cgit.png /var/www/htdocs/cgit/cgit.png
-
- ScriptAlias /cgi-bin/ /var/www/htdocs/cgit/
-
- DocumentRoot /var/git/repositories
- <Directory /var/git/repositories>
- AllowOverride None
- Options +ExecCGI
- Order allow,deny
- Allow from all
-
- DirectoryIndex /cgi-bin/cgit.cgi
-
- RewriteEngine on
- RewriteCond %{REQUEST_FILENAME} !-f
- RewriteRule ^.*$ /cgi-bin/cgit.cgi/$0 [L,PT]
- </Directory>
-
- ErrorLog /var/log/apache2/cgit.openezx.org/error.log
- CustomLog /var/log/apache2/cgit.openezx.org/access.log common
-</VirtualHost>
-# end vhost for git