summaryrefslogtreecommitdiff
path: root/cgit/nginx/pages/cgit.conf
blob: 9d3f7ef4d2c16072590f962dfee1d0cedcf48e4c (plain)
1
2
3
4
5
6
7
8
9
10
root /usr/share/cgit ;
location /git
{
	include fastcgi_params;
	fastcgi_param SCRIPT_FILENAME /usr/lib/cgit/cgit.cgi;
	fastcgi_pass unix:/run/fcgiwrap.socket;
	fastcgi_param PATH_INFO $fastcgi_path_info;
	fastcgi_param QUERY_STRING $args;
	fastcgi_split_path_info ^(/git/?)(.+)$;
}