diff options
author | Georg | 2021-07-25 02:11:46 +0200 |
---|---|---|
committer | Georg | 2021-07-25 02:11:46 +0200 |
commit | 6f7f3b6652fcf61722d486902e610ffbbc5443f5 (patch) | |
tree | 55ba8f398c23c309007b465ab68859860c07f176 /cgit | |
parent | 1799a8b963950365fde2d6e1bca8aa9e3bdbc857 (diff) | |
download | git-6f7f3b6652fcf61722d486902e610ffbbc5443f5.tar.gz git-6f7f3b6652fcf61722d486902e610ffbbc5443f5.tar.bz2 git-6f7f3b6652fcf61722d486902e610ffbbc5443f5.zip |
Gitea, cgit configurations and README
Signed-off-by: Georg <georg@lysergic.dev>
Diffstat (limited to 'cgit')
-rw-r--r-- | cgit/cgitrc | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/cgit/cgitrc b/cgit/cgitrc new file mode 100644 index 0000000..7d3020c --- /dev/null +++ b/cgit/cgitrc @@ -0,0 +1,63 @@ +# Enable caching of up to 1000 output entriess +cache-size=1000 + +# Specify some default clone prefixes +clone-prefix=ssh://git.com.de:28/LibertaCasa + +# Specify the css url +css=/cgit/cgit.css + +# Specify the logo url +logo=/cgit/cgit.png + +# Show extra links for each repository on the index page +enable-index-links=1 + +# Show number of affected files per commit on the log pages +enable-log-filecount=1 + +# Show number of added/removed lines per commit on the log pages +enable-log-linecount=1 + +# Set the title and heading of the repository index page +root-title=The LibertaCasa Project + +# Allow download of tar.gz, tar.bz2 and zip-files +snapshots=tar.gz tar.bz2 zip + + +## +## List of common mimetypes +## + +mimetype.git=image/git +mimetype.html=text/html +mimetype.jpg=image/jpeg +mimetype.jpeg=image/jpeg +mimetype.pdf=application/pdf +mimetype.png=image/png +mimetype.svg=image/svg+xml + +#custom +source-filter=/usr/lib/cgit/filters/syntax-highlighting.py +virtual-root=/ +scan-path=/var/lib/git/gitea-repositories/libertacasa/ + +## +## List of repositories. +## PS: Any repositories listed when section is unset will not be +## displayed under a section heading +## PPS: This list could be kept in a different file (e.g. '/etc/cgitrepos') +## and included like this: +## include=/etc/cgitrepos +## + +#repo.url=libertacasa-irc +#repo.path=/var/lib/git/gitea-repositories/libertacasa/irc.git +#repo.desc=LibertaCasa-IRC +#repo.owner=hello@liberta.casa +# +#repo.url=libertacasa-gemini +#repo.path=/var/lib/git/gitea-repositories/libertacasa/gemini.git +#repo.desc=LibertaCasa-Gemini +#repo.owner=hello@liberta.casa |