about summary refs log tree commit diff stats
path: root/tools/conf/etc/nginx/sites-enabled/git.conf
blob: f9d2d97e1278446746523feae7830e9e8e404685 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
server {
    listen 8080;
    server_name git.server.ank;

    access_log syslog:server=unix:/dev/log,facility=daemon,tag=nginx_git,nohostname main;
    error_log syslog:server=unix:/dev/log,facility=daemon,tag=nginx_git_err,nohostname debug;

    root /srv/www/gitweb;

    location /git/static {
        # static files (png/css) served from /usr/share/gitweb/static
        alias /srv/www/gitweb/static;
    }

    location / {
        index gitweb.cgi;
        fastcgi_split_path_info      ^/git()(/?.+)$;
        fastcgi_param GITWEB_CONFIG  /etc/gitweb.conf;
        fastcgi_param DOCUMENT_ROOT  /srv/www/gitweb;
        fastcgi_param SCRIPT_NAME    /gitweb.cgi$fastcgi_path_info;
        include fastcgi_params;
        fastcgi_pass unix:/var/run/fcgiwrap.sock;
    }
}