aboutsummaryrefslogtreecommitdiffstats
path: root/roles/git/tasks/cgit.yml
diff options
context:
space:
mode:
Diffstat (limited to 'roles/git/tasks/cgit.yml')
-rw-r--r--roles/git/tasks/cgit.yml73
1 files changed, 29 insertions, 44 deletions
diff --git a/roles/git/tasks/cgit.yml b/roles/git/tasks/cgit.yml
index fd9f549..3362d2c 100644
--- a/roles/git/tasks/cgit.yml
+++ b/roles/git/tasks/cgit.yml
@@ -1,59 +1,44 @@
-- name: Install cgit dependencies
+- name: Install cgit package and deps (fcgi stuff)
apt: pkg={{ item }} state=installed
with_items:
- - groff
- - libssl-dev
- - python-pip
+ - cgit
+ - fcgiwrap
+ - spawn-fcgi
tags:
- dependencies
-- name: Install cgit pip dependencies
- pip: name={{ item }}
- with_items:
- - docutils
- - pygments
-
-- name: Download cgit release
- get_url: url=http://git.zx2c4.com/cgit/snapshot/cgit-{{ cgit_version }}.tar.xz
- dest=/root/cgit-{{ cgit_version }}.tar.xz
-
-- name: Decompress cgit source
- unarchive: src=/root/cgit-{{ cgit_version }}.tar.xz
- dest=/root copy=no
- creates=/root/cgit-{{ cgit_version }}/configure
-
-- name: Build and install cgit
- shell: make get-git ; make ; make install
- executable=/bin/bash
- chdir=/root/cgit-{{ cgit_version }}
- creates=/var/www/htdocs/cgit/cgit.cgi
-
- name: Copy cgitrc
template: src=etc_cgitrc.j2 dest=/etc/cgitrc
group=www-data
owner=root
-- name: Rename existing Apache cgit virtualhost
- command: mv /etc/apache2/sites-available/cgit /etc/apache2/sites-available/cgit.conf removes=/etc/apache2/sites-available/cgit
-
-- name: Remove old sites-enabled/cgit symlink (new one will be created by a2ensite)
- file: path=/etc/apache2/sites-enabled/cgit state=absent
+- name: Create static files directory
+ file: path=/srv/http/cgit
+ state=directory
+ owner=www-data
+ group=www-data
+ mode=0775
+ recurse=yes
-- name: Configure the Apache HTTP server for cgit
- template: src=etc_apache2_sites-available_cgit.j2
- dest=/etc/apache2/sites-available/cgit.conf
+- name: Upload Custom cgit Static Files (css, robots.txt, logo, etc)
+ copy: src={{ item.src }} dest={{ item.dest }}
+ group=www-data
+ owner=root
+ with_items:
+ - { src: 'robots.txt', dest: '/srv/http/cgit/robots.txt' }
+ - { src: 'cgit.png', dest: '/srv/http/cgit/cgit.png' }
+ - { src: 'cgit.css', dest: '/srv/http/cgit/cgit.css' }
+ - { src: 'favicon.ico', dest: '/srv/http/cgit/favicon.ico' }
+
+- name: Configure the nginx HTTP server for cgit
+ template: src=etc_nginx_sites-available_cgit.j2
+ dest=/etc/nginx/sites-available/cgit
group=root
owner=root
-- name: Enable Apache CGI module
- command: a2enmod cgi creates=/etc/apache2/mods-enabled/cgi.load
- notify: restart apache
-
-- name: Enable Apache rewrite module
- command: a2enmod rewrite creates=/etc/apache2/mods-enabled/rewrite.load
- notify: restart apache
-
-- name: Enable cgit site
- command: a2ensite cgit.conf creates=/etc/apache2/sites-enabled/cgit.conf
- notify: restart apache
+- name: Create symlink to enable cgit config
+ file: state=link
+ src=/etc/nginx/sites-available/cgit
+ dest=/etc/nginx/sites-enabled/cgit
+ notify: nginx reload