aboutsummaryrefslogtreecommitdiff
path: root/roles/git/templates/git_nginx.conf.j2
blob: cd37f25178583c70079df9a39b099edbc28383b7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
server {
    listen 80;
    server_name _;

    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-nginx.sock;
    }
}