diff options
author | 2022-11-26 19:59:15 +0100 | |
---|---|---|
committer | 2022-11-26 23:51:25 +0100 | |
commit | f4ce6ac1be7b2817a8e02fc0e517d93ff9890d2e (patch) | |
tree | 9474949eb2a2f21e5276a72bd3acdb499c37b5a5 /contrib/config.example.edn | |
parent | initial commit (diff) | |
download | cgit-httpd-f4ce6ac1be7b2817a8e02fc0e517d93ff9890d2e.tar.xz |
add initial version of cgit-httpd
Diffstat (limited to 'contrib/config.example.edn')
-rw-r--r-- | contrib/config.example.edn | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/contrib/config.example.edn b/contrib/config.example.edn new file mode 100644 index 0000000..b66317f --- /dev/null +++ b/contrib/config.example.edn @@ -0,0 +1,11 @@ +; Example configuration for cgit-httpd for Debian. +{:http {:port 8080} + :repos-root "/srv/git" + :cgit {:cgi "/usr/lib/cgit/cgit.cgi" + :config-file "/etc/cgitrc" ; See cgitrc(5). + :assets-dir "/usr/share/cgit/"} + :git {:cgi "/usr/lib/git-core/git-http-backend" + ; If false, git-http-backend expects the magic file + ; "git-daemon-export-ok" to exist in exportable repos. + ; See git-http-backend(1). + :export-all false}} |