diff options
Diffstat (limited to 'roles/cgit/templates/etc-httpd.d-cgit.conf.j2')
-rw-r--r-- | roles/cgit/templates/etc-httpd.d-cgit.conf.j2 | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/roles/cgit/templates/etc-httpd.d-cgit.conf.j2 b/roles/cgit/templates/etc-httpd.d-cgit.conf.j2 new file mode 100644 index 0000000..6fb8e98 --- /dev/null +++ b/roles/cgit/templates/etc-httpd.d-cgit.conf.j2 @@ -0,0 +1,20 @@ + +# httpd ~~ /etc/httpd.d/cgit.conf" +# managed by Ansible + +ext_ip="0.0.0.0" +server "cgit" { + listen on $ext_ip port {{ cgit_port }} +{% if cgit_authenticate %} + authenticate "realm" with "/htpasswd/cgit" +{% endif %} + + # serve cgit static files directly: cgit.css and cgit.png + location "/cgit.*" { + root "/cgit" + no fastcgi + } + # cgit CGI + root "/cgi-bin/cgit.cgi" + fastcgi socket "/run/slowcgi.sock" +} |