blob: 10037bde49873277d1dcc846d9e2eb9c9eb0d366 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
{ pkgs, lib }:
{ fcgiwrapSocket
, scanPath
, projectList
, aboutFilter ? "${pkgs.cgit}/lib/cgit/filters/about-formatting.sh"
, sourceFilter ? "${pkgs.cgit}/lib/cgit/filters/syntax-highlighting.py"
, extraConfig ? ""
}:
let
cgitConfig = pkgs.writeText "cgitrc" ''
cache-size=1000
virtual-root=/
about-filter=${aboutFilter}
source-filter=${sourceFilter}
remove-suffix=1
enable-git-config=1
#enable-gitweb-owner=1
project-list=${projectList}
scan-path=${scanPath}
enable-blame=1
enable-follow-links=1
enable-index-owner=0
enable-http-clone=1
snapshots=tar.gz zip
${extraConfig}
'';
in {
root = "${pkgs.cgit}/cgit/";
extraConfig = ''
try_files $uri @cgit;
location @cgit {
include ${pkgs.nginx}/conf/fastcgi_params;
fastcgi_param CGIT_CONFIG ${cgitConfig};
fastcgi_param HTTP_HOST $server_name;
fastcgi_param PATH_INFO $uri;
fastcgi_param QUERY_STRING $args;
fastcgi_param SCRIPT_FILENAME ${pkgs.cgit}/cgit/cgit.cgi;
fastcgi_pass unix:${fcgiwrapSocket};
}
'';
}
|