summaryrefslogtreecommitdiff
path: root/roles/cgit/files/cgit.conf
blob: 5d7eef8202fd8b9252f9c805a784d9337202db2a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Source: https://wiki.archlinux.org/title/cgit

root /usr/share/cgit/;
try_files $uri @cgit;

location @cgit {
   include fastcgi_params;

   fastcgi_param SCRIPT_FILENAME /var/www/cgi-bin/cgit;
   fastcgi_param PATH_INFO $uri;
   fastcgi_param QUERY_STRING $args;
   fastcgi_param HTTP_HOST $server_name;

   fastcgi_pass unix:/run/fcgiwrap.sock;
}