diff options
author | Romain Gonçalves <me@rgoncalves.se> | 2021-12-11 13:54:22 +0000 |
---|---|---|
committer | Romain Gonçalves <me@rgoncalves.se> | 2021-12-11 13:54:22 +0000 |
commit | e60e99796111ee6d43080b4e48971c08886c0570 (patch) | |
tree | 481e8fd119b3afdd0e2a2730ce1f41d623577e9e /roles/cgit/templates/httpd.conf.j2 | |
parent | 48208c520bb15d16b0eab623b97fa5e86c6f665c (diff) | |
download | rules-e60e99796111ee6d43080b4e48971c08886c0570.tar.gz |
roles: Add git and cgit roles
Diffstat (limited to 'roles/cgit/templates/httpd.conf.j2')
-rw-r--r-- | roles/cgit/templates/httpd.conf.j2 | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/roles/cgit/templates/httpd.conf.j2 b/roles/cgit/templates/httpd.conf.j2 new file mode 100644 index 0000000..962016a --- /dev/null +++ b/roles/cgit/templates/httpd.conf.j2 @@ -0,0 +1,18 @@ +# managed by Ansible + +server "cgit" { + listen on "{{ cgit_ip }}" port {{ cgit_port }} +{% if cgit_authenticate %} + authenticate "realm" with "/htpasswd/cgit" +{% endif %} + + # cgit + location "/cgit.*" { + root "/cgit" + no fastcgi + } + + # fastcgi + root "/cgi-bin/cgit.cgi" + fastcgi socket "/run/slowcgi.sock" +} |