From acff86722d07805a7e6665c3e0a3dfe604c73d24 Mon Sep 17 00:00:00 2001 From: Peter Date: Wed, 28 Sep 2022 10:58:30 +0100 Subject: Commit cgit config files --- configs/cgitrc | 114 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 114 insertions(+) create mode 100644 configs/cgitrc (limited to 'configs/cgitrc') diff --git a/configs/cgitrc b/configs/cgitrc new file mode 100644 index 0000000..65c31bf --- /dev/null +++ b/configs/cgitrc @@ -0,0 +1,114 @@ +# Show owner on index page +enable-index-owner=0 + +# Allow http transport git clone +enable-http-clone=1 + +# Show extra links for each repository on the index page +enable-index-links=1 + +# Enable blame page and create links to it from tree page +enable-blame=1 + +# Enable ASCII art commit history graph on the log pages +enable-commit-graph=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 + +# Sort branches by date +branch-sort=age + +# Enable caching of up to 1000 output entries +cache-size=0 + +# Allow download of tar.gz, tar.bz2 and zip-files +snapshots=tar.gz tar.bz2 zip + +# Enable statistics per week, month and quarter +max-stats=quarter + +# Set the title and heading of the repository index page +root-title=Git repository browser + +# Set a subheading for the repository index page +root-desc=a fast webinterface for the git dscm + +# Add a cgit favicon +favicon=/favicon.ico + +# Use a custom logo +logo=/cgit.png + +# Specify the css url +css=/cgit.css + +# if you do not want that webcrawler (like google) index your site +robots=noindex, nofollow + +# if cgit messes up links, use a virtual-root.4 +virtual-root=/ + +# if any repositories are found with a suffix of ".git", this suffix will be removed for the url and name. +remove-suffix=1 + +# Highlight source code with python pygments-based highlighter +source-filter=/usr/lib/cgit/filters/syntax-highlighting.py + +# Format markdown, restructuredtext, manpages, text files, and html files +# through the right converters +about-filter=/usr/lib/cgit/filters/about-formatting.sh + +# gravatar email filter +# email-filter=/usr/lib/cgit/filters/email-gravatar.py + +mimetype.gif=image/gif +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 + +readme=:README.md +readme=:readme.md +readme=:README.mkd +readme=:readme.mkd +readme=:README.rst +readme=:readme.rst +readme=:README.html +readme=:readme.html +readme=:README.htm +readme=:readme.htm +readme=:README.txt +readme=:readme.txt +readme=:README +readme=:readme +readme=:INSTALL.md +readme=:install.md +readme=:INSTALL.mkd +readme=:install.mkd +readme=:INSTALL.rst +readme=:install.rst +readme=:INSTALL.html +readme=:install.html +readme=:INSTALL.htm +readme=:install.htm +readme=:INSTALL.txt +readme=:install.txt +readme=:INSTALL +readme=:install + +## +## 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 +## + +scan-path=/git -- cgit v1.2.3