summaryrefslogtreecommitdiffstats
path: root/cgit/cgitrc (unfollow)
AgeCommit message (Collapse)AuthorFilesLines
2024-08-07Rename project to srcnodeMalfurious1-2/+2
"Normalmode" is the name of the hosted platform that this software package was constructed to power. To better distinguish between the two and to give this project more of a standalone identity, it is rebranded with a new name. Signed-off-by: Malfurious <m@lfurio.us>
2024-03-12cgit: Display version numbers in cgit page footerMalfurious1-2/+1
Signed-off-by: Malfurious <m@lfurio.us>
2024-03-12cgit: Add custom logoMalfurious1-1/+1
Signed-off-by: Malfurious <m@lfurio.us>
2023-09-16cgit: Update SSH clone URLsMalfurious1-1/+1
The username used to access gitolite has changed from 'gitolite' to 'git'. Reflect this in the cgit UI. Signed-off-by: Malfurious <m@lfurio.us>
2023-09-16cgit: Update scan-path / repository mount locationMalfurious1-1/+1
Since the data volume now only contains git repositories, rather than the whole gitolite host home directory, there is no need to mount to a nested path. Anticipate moving the mount point, and change the cgit scan path to /repositories. Signed-off-by: Malfurious <m@lfurio.us>
2023-09-16cgit: Consolidate config files into a single directoryMalfurious1-0/+0
Continue cleaning the folder structure from the previous merge. Signed-off-by: Malfurious <m@lfurio.us>
2022-08-18cgit: Show proper idle times on the index pagev0.1Malfurious1-1/+2
By default, the idle times shown by cgit only reflect the most recent push to the master branch - and that is the time of the push, not of the actual commit. This patch causes the age/timestamp to be set by pushes to any branch. The times will reflect the age of the youngest commit on any branch or tag. Signed-off-by: Malfurious <m@lfurio.us>
2022-08-16cgit: Fix ssh clone urlMalfurious1-1/+1
Although user@server:path would be the preferred URL form, cgit interprets this as an HTTP link, relative to the repository base URL. That is, even though the desired text appears on screen, the text's link is broken. Someone copying the link, as opposed to copying the text, to use with an actual clone (or git-remote add) will have a bad time. Using a full URL with the ssh:// protocol scheme solves this problem. '.git' is omitted from the end of the path for consistency with the HTTP url (it's use is optional for ssh protocol). Signed-off-by: Malfurious <m@lfurio.us>
2022-08-07cgit: Configure cgit for normalmode useMalfurious1-6/+20
Signed-off-by: Malfurious <m@lfurio.us>
2022-08-07Add cgit docker imageMalfurious1-0/+23
Apache webserver (httpd) is setup minimally to host cgit on a website (sub)domain root. cgitrc config file is based on that from my previous installation, in my personal website. Signed-off-by: Malfurious <m@lfurio.us>