blob: 43da2a394b93ae3a715118b2a3726177300c470e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
# See cgitrc(5) for details and example config.
# Enable caching of up to 1000 output entries.
cache-size=1000
# Specify some default clone urls using macro expansion.
clone-url=git://git.ilvokhin.com/$CGIT_REPO_URL git@git.ilvokhin.com:$CGIT_REPO_URL
# Show owner on index page.
enable-index-owner=0
# Enable blame page and create links to it from tree page.
enable-blame=1
# Use a custom logo.
logo=
# Set the title and heading of the repository index page.
root-title=git.ilvokhin.com
# Set a subheading for the repository index page.
root-desc=
# Allow download of tar.gz, tar.bz2 and zip-files.
snapshots=tar.gz tar.bz2 zip
## List of common mimetypes.
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
# To fix messed up urls.
virtual-root=/
# List of repositories. This is explicit list instead of scan-path to allow
# private repositories.
# Blog.
repo.url=blog.git
repo.path=/srv/git/blog.git
repo.desc=Code and content for blog.ilvokhin.com.
# Home.
repo.url=home.git
repo.path=/srv/git/home.git
repo.desc=Code for ilvokhin.com.
# Infra.
repo.url=infra.git
repo.path=/srv/git/infra.git
repo.desc=Ansible playbooks for personal infrastructure.
|