aboutsummaryrefslogtreecommitdiffstats
path: root/roles/cgit/templates
diff options
context:
space:
mode:
Diffstat (limited to 'roles/cgit/templates')
-rw-r--r--roles/cgit/templates/conf-cgitrc.j2 (renamed from roles/cgit/templates/var-www-conf-cgitrc.j2)4
-rw-r--r--roles/cgit/templates/conf-footer.html.j23
-rw-r--r--roles/cgit/templates/etc-httpd.d-cgit.conf.j210
3 files changed, 11 insertions, 6 deletions
diff --git a/roles/cgit/templates/var-www-conf-cgitrc.j2 b/roles/cgit/templates/conf-cgitrc.j2
index 8be36ce..1fc283f 100644
--- a/roles/cgit/templates/var-www-conf-cgitrc.j2
+++ b/roles/cgit/templates/conf-cgitrc.j2
@@ -6,6 +6,7 @@
css={{ cgit__css }}
logo={{ cgit__logo }}
favicon={{ cgit__favicon }}
+footer={{ cgit__footer }}
# readme
readme=:README.md
@@ -21,6 +22,7 @@ enable-http-clone=1
enable-index-links=1
max-stats=quarter
robots=noindex, nofollow
+localtime=1
# git
clone-url=git://git.{{ global.domain_name }}/$CGIT_REPO_URL ssh://git@git.{{ global.domain_name }}/$CGIT_REPO_URL http://git.{{ global.domain_name }}/$CGIT_REPO_URL
@@ -36,4 +38,4 @@ snapshots=tar.gz
# sections
section-from-path=1
section-sort=1
-scan-path={{ cgit_git_dir_chroot }}
+scan-path={{ cgit_git_dir }}
diff --git a/roles/cgit/templates/conf-footer.html.j2 b/roles/cgit/templates/conf-footer.html.j2
new file mode 100644
index 0000000..66ca627
--- /dev/null
+++ b/roles/cgit/templates/conf-footer.html.j2
@@ -0,0 +1,3 @@
+<span style="background-color:yellow">
+remember that computers suck.
+</span>
diff --git a/roles/cgit/templates/etc-httpd.d-cgit.conf.j2 b/roles/cgit/templates/etc-httpd.d-cgit.conf.j2
index 6fb8e98..b77ca35 100644
--- a/roles/cgit/templates/etc-httpd.d-cgit.conf.j2
+++ b/roles/cgit/templates/etc-httpd.d-cgit.conf.j2
@@ -2,19 +2,19 @@
# httpd ~~ /etc/httpd.d/cgit.conf"
# managed by Ansible
-ext_ip="0.0.0.0"
server "cgit" {
- listen on $ext_ip port {{ cgit_port }}
+ listen on "{{ cgit_ip }}" port {{ cgit_port }}
{% if cgit_authenticate %}
authenticate "realm" with "/htpasswd/cgit"
{% endif %}
- # serve cgit static files directly: cgit.css and cgit.png
+ # cgit
location "/cgit.*" {
root "/cgit"
- no fastcgi
+ no fastcgi
}
- # cgit CGI
+
+ # fastcgi
root "/cgi-bin/cgit.cgi"
fastcgi socket "/run/slowcgi.sock"
}
remember that computers suck.