blob: 9cc21535a3e803160efd6baaadfe9056a62939be (
plain)
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
|
ServerName localhost
# Next two lines changed for new document root
DocumentRoot /srv/git
<Directory "/srv/git">
AllowOverride None
Options ExecCGI FollowSymLinks
Require all granted
</Directory>
# cgid module is required to run the cgit binary
LoadModule cgid_module lib/httpd/modules/mod_cgid.so
<IfModule cgid_module>
ScriptSock /var/run/cgid.sock
</IfModule>
# Path to cgit stylesheet, graphics
Alias /cgit-data /usr/share/cgit
<Directory "/usr/share/cgit">
AllowOverride None
Options None
Require all granted
</Directory>
# Path to cgit binary
# Next line changed
ScriptAlias / /usr/libexec/cgit/cgi-bin/cgit/
<Directory "/usr/libexec/cgit/cgi-bin">
AllowOverride None
Options None
Require all granted
</Directory>
|